Fix JWT secret env var name #36

Merged
dergrimm merged 1 commit from fix-jwt-secret-env-var-name into main 2022-02-06 20:15:01 +00:00
2 changed files with 2 additions and 2 deletions

View file

@ -9,7 +9,7 @@ POSTGRES_PASSWORD=
BACKEND_URL=URL
# Backend - API
BACKEND_API_GRAPHQL_PLAYGROUND=false
BACKEND_JWT_SECRET=
BACKEND_API_JWT_SECRET=
# Backend - Worker
# Backend - SMTP
BACKEND_SMTP_HELO=

View file

@ -62,7 +62,7 @@ services:
environment:
BACKEND_URL: ${URL}
BACKEND_API_GRAPHQL_PLAYGROUND: ${BACKEND_API_GRAPHQL_PLAYGROUND}
BACKEND_API_JWT_SECRET: ${BACKEND_JWT_SECRET}
BACKEND_API_JWT_SECRET: ${BACKEND_API_JWT_SECRET}
BACKEND_WORKER_REDIS_URL: redis://redis:6379
BACKEND_SMTP_HELO: ${BACKEND_SMTP_HELO}
BACKEND_SMTP_HOST: ${BACKEND_SMTP_HOST}