Files
hwinkel 38c8304336
Build and Push Docker Image / build (push) Successful in 1m23s
feat: update AUTH_SECRET handling and improve session management
fix: add credentials to POST request in NewCompanyPage
fix: update Docker image pull policy for app service
2026-05-03 09:24:41 +02:00

18 lines
668 B
Bash
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Datenbank (für lokale Entwicklung)
DATABASE_URL="mysql://user:password@localhost:3306/annas_rechnungsmanager"
# Session-Secret optional
# Wenn nicht gesetzt, wird ein zufälliger Wert generiert (empfohlen für Docker/Development)
# Bei Containerneustarts werden alle Sessions dann automatisch ungültig
# Für Production mit persistenter Session: openssl rand -base64 32
AUTH_SECRET=""
# Docker-Compose: Datenbank-Credentials
DB_ROOT_PASSWORD="sicheres_root_passwort"
DB_USER="annas_user"
DB_PASSWORD="sicheres_db_passwort"
DB_NAME="annas_rechnungen"
# Docker-Compose: Admin-Passwort (nur beim ersten Start relevant)
ADMIN_PASSWORD="sicheres_admin_passwort"