mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-10-31 22:19:00 +00:00
38 lines
982 B
Text
38 lines
982 B
Text
# SECURITY WARNING: keep the secret key used in production secret!
|
|
SECRET_KEY="7(2w1sedok=aznpq)ta1mc4i%4h=xx@hxwx*o57ctsuml0x%fr"
|
|
|
|
# SECURITY WARNING: don't run with debug turned on in production!
|
|
DEBUG=false
|
|
|
|
DOMAIN=your.domain.here
|
|
EMAIL=your@email.here
|
|
|
|
## Leave unset to allow all hosts
|
|
# ALLOWED_HOSTS="localhost,127.0.0.1,[::1]"
|
|
|
|
OL_URL=https://openlibrary.org
|
|
|
|
## Database backend to use.
|
|
## Default is postgres, sqlite is for dev quickstart only (NOT production!!!)
|
|
BOOKWYRM_DATABASE_BACKEND=postgres
|
|
|
|
MEDIA_ROOT=images/
|
|
|
|
POSTGRES_PASSWORD=securedbpassword123
|
|
POSTGRES_USER=fedireads
|
|
POSTGRES_DB=fedireads
|
|
POSTGRES_HOST=db
|
|
|
|
REDIS_PASSWORD=redispassword123
|
|
CELERY_BROKER=redis://:${REDIS_PASSWORD}@redis:6379/0
|
|
CELERY_RESULT_BACKEND=redis://:${REDIS_PASSWORD}@redis:6379/0
|
|
|
|
FLOWER_PORT=8888
|
|
FLOWER_USER=mouse
|
|
FLOWER_PASSWORD=changeme
|
|
|
|
EMAIL_HOST="smtp.mailgun.org"
|
|
EMAIL_PORT=587
|
|
EMAIL_HOST_USER=mail@your.domain.here
|
|
EMAIL_HOST_PASSWORD=emailpassword123
|
|
EMAIL_USE_TLS=true
|