Update service ports in documentation and configuration files to 12000 for backend

This commit is contained in:
2026-04-27 21:35:35 +02:00
parent 8f4d01d34d
commit 80999b3659
5 changed files with 23 additions and 33 deletions
+1 -1
View File
@@ -4,6 +4,6 @@ import os
class Config:
SECRET_KEY = os.getenv("FLASK_SECRET_KEY", "dev-secret-change-in-production")
BACKEND_URL = os.getenv("BACKEND_URL", "http://localhost:8000")
BACKEND_URL = os.getenv("BACKEND_URL", "http://localhost:12000")
SESSION_COOKIE_HTTPONLY = True
SESSION_COOKIE_SAMESITE = "Lax"