Fixed JWT secret env var name
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing

This commit is contained in:
Dominic Grimm 2022-02-06 21:12:38 +01:00
parent 8d9932ad43
commit 0a3d1e4c94
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}