Bündelt die Neuentwicklung in AssigmentMonitorV2 (eigene Ports/DB), die Umstellung auf numerische Bewertungen, Meeting-Checklisten, KI-Tagging und die geplante Feedback-Kaskade — als Basis für Versionsverwaltung in Gitea. Co-authored-by: Cursor <cursoragent@cursor.com>
17 lines
585 B
Plaintext
17 lines
585 B
Plaintext
# Assignment Monitor V2 — lokale Entwicklungs-Isolation
|
|
# Kopie nach `.env` anlegen. Diese Werte dürfen NICHT mit dem Produktivsystem
|
|
# (c:\dev\AssigmentMonitor, Ports 5173/4000) kollidieren.
|
|
|
|
# Vite-Frontend (Produktiv: 5173)
|
|
PORT=5174
|
|
|
|
# Express-RPC-API (Produktiv: 4000)
|
|
API_PORT=4001
|
|
|
|
# Vite-Proxy-Ziel → muss zu API_PORT passen
|
|
API_URL=http://localhost:4001
|
|
|
|
# SQLite-Dateiname unter server/data/ (Produktiv: assignment-monitor.sqlite3)
|
|
# Nur Dateiname, kein Pfad — der Server erzwingt Ablage innerhalb dieses V2-Projekts.
|
|
SQLITE_FILENAME=assignment-monitor-v2-dev.sqlite3
|