Clarify JWT_SECRET placeholder in configuration files

This commit is contained in:
headlessdev 2025-04-15 16:04:06 +02:00
parent a055d72246
commit 39ba85dcf4
2 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@ services:
ports:
- "3000:3000"
environment:
JWT_SECRET: RANDOM_SECRET
JWT_SECRET: RANDOM_SECRET # Replace with a secure random string
DATABASE_URL: "postgresql://postgres:postgres@db:5432/postgres"
depends_on:
- db

View File

@ -4,7 +4,7 @@ services:
ports:
- "3000:3000"
environment:
JWT_SECRET: RANDOM_SECRET
JWT_SECRET: RANDOM_SECRET # Replace with a secure random string
DATABASE_URL: "postgresql://postgres:postgres@db:5432/postgres"
depends_on:
- db