Add Docker Compose setup

Multi-stage Dockerfile builds the React frontend then serves everything
from a single Python container. settings.json persists via a named volume.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Space-Banane
2026-06-26 15:40:08 +02:00
parent 20f06d0a57
commit 678110d9e9
3 changed files with 33 additions and 1 deletions
+2 -1
View File
@@ -1,9 +1,10 @@
import json
import os
import secrets
from datetime import datetime, timezone
from pathlib import Path
SETTINGS_PATH = Path(__file__).parent.parent / "settings.json"
SETTINGS_PATH = Path(os.environ.get("SETTINGS_PATH", Path(__file__).parent.parent / "settings.json"))
def _now():