Phase 5 Complete by Claude Code

This commit is contained in:
2026-02-17 23:45:20 +02:00
parent fc2d04b8bb
commit c0605c77db
17 changed files with 1663 additions and 12 deletions

View File

@@ -20,6 +20,10 @@ class Settings(BaseSettings):
mqtt_admin_password: str = ""
mosquitto_password_file: str = "/etc/mosquitto/passwd"
# SQLite (MQTT data storage)
sqlite_db_path: str = "./mqtt_data.db"
mqtt_data_retention_days: int = 90
# App
backend_cors_origins: str = '["http://localhost:5173"]'
debug: bool = True