29 lines
902 B
Bash
29 lines
902 B
Bash
# =============================================
|
||
# 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"
|