22 lines
493 B
Plaintext
22 lines
493 B
Plaintext
# Flask Environment
|
|
FLASK_APP=app.py
|
|
FLASK_ENV=development
|
|
|
|
# Security
|
|
SECRET_KEY=change-this-to-a-random-secret-key
|
|
|
|
# Database
|
|
DATABASE_URL=sqlite:///instance/dev.db
|
|
|
|
# Redis (for production)
|
|
REDIS_HOST=redis
|
|
REDIS_PORT=6379
|
|
|
|
# Admin User Credentials (used during initial Docker deployment)
|
|
# These credentials are set when the database is first created
|
|
ADMIN_USERNAME=admin
|
|
ADMIN_PASSWORD=change-this-secure-password
|
|
|
|
# Optional: Sentry for error tracking
|
|
# SENTRY_DSN=your-sentry-dsn-here
|