Initial commit: Docker infrastructure for fullstack Vollversammlung app

This commit is contained in:
2026-06-28 15:37:48 +02:00
commit 2960855bca
21 changed files with 1434 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
# =============================================
# React Frontend Environment Konfiguration
# Kopiere diese Datei nach .env.local und passe die Werte an.
# =============================================
# -------------------
# API Backend URL
# -------------------
VITE_API_URL="http://localhost:8080/api"
# -------------------
# Mercure (SSE/Logging)
# -------------------
VITE_MERCURE_URL="http://localhost:3000/.well-known/mercure"
# -------------------
# OAuth Endpunkte (Vonova Provider)
# -------------------
VITE_OAUTH_AUTHORIZATION_ENDPOINT="https://oauth.vonova.de/oauth/authorize"
VITE_OAUTH_TOKEN_ENDPOINT="https://oauth.vonova.de/oauth/token"
VITE_OAUTH_CLIENT_ID=__CHANGE_ME_OAUTH_CLIENT_ID__
VITE_OAUTH_REDIRECT_URI="http://localhost:5173/oauth/callback"
# -------------------
# Manifest / App Metadata
# -------------------
VITE_APP_NAME="Vollversammlung"
VITE_APP_VERSION="0.1.0"