12 lines
288 B
Bash
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
|