This commit is contained in:
2026-01-12 21:44:30 -05:00
parent 75f4b93c4b
commit a69d704284
6 changed files with 13 additions and 2 deletions

View File

@@ -4,6 +4,10 @@
# Flask app location
FLASK_APP=backend.app:create_app
# Flask secret key (REQUIRED for production)
# Generate with: python3 -c "import secrets; print(secrets.token_hex(32))"
SECRET_KEY=CHANGE_ME_TO_A_RANDOM_SECRET_KEY
# Backend port (defaults to 5001 if not set)
PORT=5001