19 lines
556 B
Plaintext
19 lines
556 B
Plaintext
# Copy to .env and adjust as needed.
|
|
|
|
# Port exposed on the host
|
|
WEB_PORT=5000
|
|
|
|
# Flask environment (development/production)
|
|
FLASK_ENV=production
|
|
|
|
# These are read by the app (see app.py) and are also used by docker-compose.yml.
|
|
SECRET_KEY=change-me
|
|
# Store the SQLite DB in the Flask instance folder
|
|
SQLALCHEMY_DATABASE_URI=sqlite:////instance/liturgie.db
|
|
|
|
# Default admin bootstrap (created only if the user does not exist yet)
|
|
ADMIN_USERNAME=admin
|
|
ADMIN_PASSWORD=admin
|
|
|
|
# NOTE: SMTP settings are configured via the Admin Dashboard and stored in the DB.
|