You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
521 B
15 lines
521 B
# HappyWedding production environment variables
|
|
# Copy this file to /opt/hw.conf.d/hw.env and fill in real values.
|
|
|
|
HW_CONFIG=production
|
|
HW_SECRET_KEY=replace-with-a-long-random-secret
|
|
|
|
# Recommended production database example (MySQL)
|
|
DATABASE_URL=mysql+pymysql://hw_user:replace-password@127.0.0.1:3306/hw
|
|
|
|
# Optional container runtime tuning
|
|
# HW_GUNICORN_WORKERS=2
|
|
# HW_GUNICORN_PORT=8000
|
|
|
|
# SQLite is only suitable for lightweight or temporary environments.
|
|
# DATABASE_URL=sqlite:////opt/hw/instance/happywedding.db
|
|
|