Merge pull request 'Fix JWT secret env var name' (#36) from fix-jwt-secret-env-var-name into main
All checks were successful
continuous-integration/drone/push Build is passing

Reviewed-on: #36
This commit is contained in:
Dominic Grimm 2022-02-06 20:15:00 +00:00
commit be7310b631
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}