31 lines
740 B
Plaintext
31 lines
740 B
Plaintext
# Environment Variables für docker-compose.prod.yml
|
|
# WICHTIG: Kopiere diese Datei zu .env und passe die Werte an!
|
|
# cp .env.example .env
|
|
#
|
|
# ACHTUNG: .env sollte NICHT ins Git committed werden!
|
|
|
|
# Server Configuration
|
|
SERVERPORT=3005
|
|
EXTERNAL_PORT=3005
|
|
DEBUG=false
|
|
|
|
# MongoDB Configuration - EXTERNER SERVER
|
|
# Beispiel für Produktionsserver:
|
|
MONGOHOST=your-mongodb-server.example.com
|
|
MONGOPORT=27017
|
|
MONGOBASE=allsensors
|
|
|
|
# MongoDB Authentication
|
|
# Setze auf "true" wenn MongoDB Authentifizierung verwendet
|
|
MONGOAUTH=true
|
|
|
|
# MongoDB User und Password im Format: username:password
|
|
# Beispiel: MONGOUSRP=admin:SecurePassword123
|
|
MONGOUSRP=admin:your-secure-password-here
|
|
|
|
# Node Environment
|
|
NODE_ENV=production
|
|
|
|
# Timezone
|
|
TZ=Europe/Berlin
|