2026-07-10 01:34:31 +02:00
|
|
|
|
# HMS Licht & Ton – Environment Configuration
|
|
|
|
|
|
# Copy this file to .env and fill in real values.
|
|
|
|
|
|
# NEVER commit the real .env file!
|
|
|
|
|
|
|
|
|
|
|
|
# --- Rentman API ---
|
|
|
|
|
|
RENTMAN_API_TOKEN=
|
|
|
|
|
|
|
|
|
|
|
|
# --- Authentication ---
|
|
|
|
|
|
JWT_SECRET=
|
|
|
|
|
|
|
|
|
|
|
|
# --- Database ---
|
2026-07-10 09:59:14 +02:00
|
|
|
|
DATABASE_URL=postgresql+asyncpg://hms:hms@postgres:5432/hms
|
2026-07-10 01:34:31 +02:00
|
|
|
|
|
|
|
|
|
|
# --- Redis ---
|
|
|
|
|
|
REDIS_URL=redis://redis:6379/0
|
|
|
|
|
|
|
|
|
|
|
|
# --- SMTP (Email) ---
|
|
|
|
|
|
SMTP_HOST=
|
|
|
|
|
|
SMTP_PORT=587
|
|
|
|
|
|
SMTP_USER=
|
|
|
|
|
|
SMTP_PASSWORD=
|
|
|
|
|
|
SMTP_FROM=info@hms-licht-ton.de
|
|
|
|
|
|
|
|
|
|
|
|
# --- CORS ---
|
|
|
|
|
|
CORS_ORIGINS=https://hms.media-on.de,http://localhost:3000
|
|
|
|
|
|
|
|
|
|
|
|
# --- Admin ---
|
|
|
|
|
|
ADMIN_USERNAME=admin
|
|
|
|
|
|
ADMIN_PASSWORD=
|
|
|
|
|
|
|
|
|
|
|
|
# --- Frontend ---
|
|
|
|
|
|
NUXT_PUBLIC_API_BASE=http://backend:8000
|