Atualizar app/config.py

This commit is contained in:
2026-08-19 21:15:06 -03:00
parent 6f060055c1
commit 5938011165
+2 -1
View File
@@ -5,7 +5,8 @@ import os
class Config:
"""Base configuration for the Flask application."""
AUTH_MODE = os.getenv("AUTH_MODE", "db") # "db" ou "oauth"
AUTH_MODE = os.getenv("AUTH_MODE", "db") # "db" or "oauth"
APP_DOMAIN = os.getenv("APP_DOMAIN", "localhost")
# Secret key for sessions and cookies.
SECRET_KEY = os.getenv("FLASK_SECRET_KEY", "change-this-secret")