mirror of
https://github.com/donpat1to/Schichtenplaner.git
synced 2025-12-01 15:05:45 +01:00
16 lines
386 B
Plaintext
16 lines
386 B
Plaintext
# === SCHICHTPLANER DOCKER COMPOSE ENVIRONMENT VARIABLES ===
|
|
# Diese Datei wird von docker-compose automatisch geladen
|
|
|
|
# Security
|
|
JWT_SECRET=${JWT_SECRET:-your-secret-key-please-change}
|
|
NODE_ENV=${NODE_ENV:-production}
|
|
|
|
# Database
|
|
DB_PATH=${DB_PATH:-/app/data/database.db}
|
|
|
|
# Server
|
|
PORT=${PORT:-3002}
|
|
|
|
# App Configuration
|
|
APP_TITLE="Shift Planning App"
|
|
ENABLE_PRO=${ENABLE_PRO:-false} |