Files
schichtplanung/.env.example
T
2026-07-31 10:08:13 +02:00

12 lines
288 B
Bash

# Backend Environment Variables
SECRET_KEY=change-this-to-a-secure-random-secret-key
DEBUG=False
ALLOWED_HOSTS=*
# PostgreSQL Database Configuration
POSTGRES_DB=shiftplan_db
POSTGRES_USER=shiftplan_user
POSTGRES_PASSWORD=shiftplan_secure_password_123
POSTGRES_HOST=db
POSTGRES_PORT=5432