14 lines
360 B
Plaintext
14 lines
360 B
Plaintext
# Public Web Frontend Environment Variables
|
|
|
|
# Flask environment (development, production)
|
|
FLASK_ENV=development
|
|
|
|
# Secret key for Flask sessions (generate a random string for production)
|
|
SECRET_KEY=your-secret-key-here-change-in-production
|
|
|
|
# API Backend URL (optional, can be set in config YAML)
|
|
API_BASE_URL=http://localhost:5000
|
|
|
|
# Logging
|
|
LOG_LEVEL=DEBUG
|