first commit

This commit is contained in:
2026-06-08 16:06:43 +02:00
commit b07b09c28e
38 changed files with 18827 additions and 0 deletions

17
.env.example Normal file
View File

@@ -0,0 +1,17 @@
# Vorlage für die MongoDB-Zugangsdaten.
# Kopieren nach .env und Werte anpassen: cp .env.example .env
# Verbindungs-URI (ohne Auth für lokale Entwicklung):
MONGODB_URI=mongodb://localhost:27017
# Mit Authentifizierung:
# MONGODB_URI=mongodb://benutzer:passwort@host:27017/?authSource=admin
# Zieldatenbank:
MONGODB_DATABASE=tasklist_editor
# Collection, in der das Task-JSON gespeichert wird:
MONGODB_COLLECTION=tasks_json
# Collection, in der die Canvas-Stände (Layout + Werte) gespeichert werden:
MONGODB_CANVAS_COLLECTION=canvas_layouts