# GeoGraSim V2-Plattform — lokale Konfiguration # Datei nach .env.local kopieren und Werte eintragen. # .env.local ist via .gitignore ausgeschlossen. # Datenbank DB_HOST=localhost DB_PORT=3306 DB_NAME=geograsim DB_USER=root DB_PASS= # Auth # Geheimer Schlüssel für JWT-light (HMAC-SHA256). Mindestens 32 Zeichen. # Lokal beliebig, Produktion muss ein starker Random-String sein. JWT_SECRET=change-me-locally-then-strong-random-on-prod-32chars # Token-Gültigkeit in Sekunden (default 4h) JWT_TTL_SECONDS=14400 # Externe APIs (für tools/asset-gen/) OPENAI_API_KEY= ELEVENLABS_API_KEY= # Pfade # Base-URL unter der die V2-Plattform erreichbar ist # Lokal: http://localhost/geograsim/v2-platform # Prod: https://geograsim.at/v2beta V2_BASE_URL=http://localhost/geograsim/v2-platform # Logging LOG_LEVEL=debug LOG_FILE=logs/v2-platform.log