We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08446ac commit 7f39262Copy full SHA for 7f39262
2 files changed
.github/workflows/deploy.yml
@@ -45,6 +45,7 @@ jobs:
45
run: |
46
cp wrangler.toml.example wrangler.toml
47
sed -i "s/PLACEHOLDER_DATABASE_ID/${CLOUDFLARE_DATABASE_ID}/g" wrangler.toml
48
+ sed -i "s/PLACEHOLDER_PROD_SECRET/${secrets.JWT_SECRET}/g" wrangler.toml
49
50
- name: Build all packages
51
run: pnpm run build
apps/api/wrangler.toml.example
@@ -19,6 +19,7 @@ name = "tabitabi-api"
19
20
[env.production.vars]
21
ALLOWED_ORIGINS = "https://tabitabi.pages.dev"
22
+JWT_SECRET = "PLACEHOLDER_PROD_SECRET"
23
24
[env.production.observability]
25
enabled = true
0 commit comments