Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/frontend.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Install Dependencies
run: bun install
- name: Create Env file
run: echo "VITE_BACKEND_URL=${{ secrets.VITE_BACKEND_URL }}" > apps/frontend/.env
run: echo "VITE_BACKEND_URL=${{ secrets.VITE_BACKEND_URL }}\nVITE_CLERK_PUBLISHABLE_KEY=${{secrets.VITE_CLERK_PUBLISHABLE_KEY}}" > apps/frontend/.env
- name: Build
run: bun run build -F frontend
- name: Deploy
Expand Down
4 changes: 3 additions & 1 deletion apps/backend/.env.template
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
SERVER_KEY=
DATABASE_URL=
PORT=3000
PORT=3000
CLERK_PUBLISHABLE_KEY=
CLERK_SECRET_KEY=
1 change: 1 addition & 0 deletions apps/backend/drizzle/0002_outstanding_kree.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ALTER TABLE "definitions" ADD COLUMN "userId" text;
1 change: 1 addition & 0 deletions apps/backend/drizzle/0003_past_random.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ALTER TABLE "definitions" ALTER COLUMN "userId" SET NOT NULL;
Loading