feat(T08): Docker, deployment & CI/CD – dockerfiles, compose, forgejo actions, readme

This commit is contained in:
Implementation Engineer
2026-07-10 01:34:31 +02:00
parent a1bba48cd7
commit 22acc39017
9 changed files with 498 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
# 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 ---
DATABASE_URL=postgresql://hms:hms@postgres:5432/hms
# --- 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