Skip to content

Commit 25233a9

Browse files
committed
fix (deployment): renamed env vars
1 parent 23c9c9a commit 25233a9

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

src/client/.env.template

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@ SELF_HOST_AUTH_TOKEN="" # Must match SELF_HOST_AUTH_SECRET on the server if usin
66

77
NEXT_PUBLIC_APP_SERVER_URL=
88
AUTH0_SECRET=
9-
AUTH0_BASE_URL="http://localhost:3000" # The base URL of your Next.js app, where it's running
9+
APP_BASE_URL="http://localhost:3000"
1010
AUTH0_ISSUER_BASE_URL="" # Your Auth0 domain with protocol, e.g. "https://YOUR_TENANT.us.auth0.com"
1111
AUTH0_CLIENT_ID=
12+
AUTH0_DOMAIN=
1213
AUTH0_CLIENT_SECRET=
1314
AUTH0_AUDIENCE=
1415
AUTH0_SCOPE='openid profile email offline_access read:profile write:profile read:tasks write:tasks read:notifications read:config write:config admin:user_metadata read:contacts write:contacts'

src/server/docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ services:
6969
environment:
7070
# These variables should be defined in your .env file
7171
POSTGRES_USER: ${POSTGRES_USER}
72-
POSTGRES_PASSWORD: ${POSTGRES_PASS}
72+
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}
7373
POSTGRES_DB: ${POSTGRES_DB}
7474
volumes:
7575
- postgres-data:/var/lib/postgresql/data

0 commit comments

Comments
 (0)