10 lines
284 B
Python
10 lines
284 B
Python
"""Flask frontend configuration."""
|
|
import os
|
|
|
|
|
|
class Config:
|
|
SECRET_KEY = os.getenv("FLASK_SECRET_KEY", "dev-secret-change-in-production")
|
|
BACKEND_URL = os.getenv("BACKEND_URL", "http://localhost:12000")
|
|
SESSION_COOKIE_HTTPONLY = True
|
|
SESSION_COOKIE_SAMESITE = "Lax"
|