First Commit with complete Setup coded by Claude 4.7 Opus
This commit is contained in:
commit
bf1d37de77
19 changed files with 4544 additions and 0 deletions
25
.env.example
Normal file
25
.env.example
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
# =============================================
|
||||
# CardSync - Konfiguration
|
||||
# =============================================
|
||||
# Kopiere diese Datei zu .env und passe die Werte an
|
||||
|
||||
# Datenbank
|
||||
POSTGRES_PASSWORD=sicher_aendern_123
|
||||
|
||||
# Sicherheit
|
||||
SECRET_KEY=bitte_einen_langen_zufaelligen_string_hier_eintragen
|
||||
|
||||
# Microsoft Azure App Registration
|
||||
# Anleitung: https://portal.azure.com -> App registrations -> New registration
|
||||
# Redirect URI muss sein: ${APP_BASE_URL}/auth/callback
|
||||
MS_CLIENT_ID=deine-azure-app-client-id
|
||||
MS_CLIENT_SECRET=dein-azure-app-client-secret
|
||||
MS_TENANT_ID=common
|
||||
|
||||
# Basis-URL der Anwendung (ohne trailing slash)
|
||||
# WICHTIG: Muss mit https:// beginnen, auch bei selbstsigniertem Cert
|
||||
APP_BASE_URL=https://localhost
|
||||
|
||||
# Komma-getrennte Liste der Admin-E-Mail-Adressen
|
||||
# Diese Benutzer haben Zugang zum Admin-Dashboard
|
||||
ADMIN_EMAILS=admin@firma.de,it@firma.de
|
||||
Loading…
Add table
Add a link
Reference in a new issue