1e51ef7def
- Konzept/, didaktik_geografie/, didaktik_simulation/, v2-modules/, v2-platform/ - 12 code-workspace-Files - STATUS-*.md - viele M/D/R-Änderungen an bereits getrackten Files - .gitignore verstärkt: **/.humaninput/, **/secret_keys.txt Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
33 lines
848 B
Bash
33 lines
848 B
Bash
# 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
|