Update POSTGRES_DB value in .env.template to use a lowercase name

This commit is contained in:
2025-11-02 04:11:59 +01:00
parent bc53504cbf
commit 0b0d1d2b06

View File

@@ -5,7 +5,7 @@ VERSION=1.0.0
# Database settings
POSTGRES_USER=postgres
POSTGRES_PASSWORD=postgres
POSTGRES_DB=App
POSTGRES_DB=app
POSTGRES_HOST=db
POSTGRES_PORT=5432
DATABASE_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${POSTGRES_HOST}:${POSTGRES_PORT}/${POSTGRES_DB}