38c8304336
Build and Push Docker Image / build (push) Successful in 1m23s
fix: add credentials to POST request in NewCompanyPage fix: update Docker image pull policy for app service
18 lines
668 B
Bash
18 lines
668 B
Bash
# 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"
|