bookwyrm/.env.example

28 lines
710 B
Plaintext
Raw Normal View History

# SECURITY WARNING: keep the secret key used in production secret!
2020-03-27 20:27:32 +00:00
SECRET_KEY=7(2w1sedok=aznpq)ta1mc4i%4h=xx@hxwx*o57ctsuml0x%fr
# SECURITY WARNING: don't run with debug turned on in production!
2020-03-22 18:21:19 +00:00
DEBUG=true
2020-03-22 18:21:19 +00:00
DOMAIN=your.domain.here
## Leave unset to allow all hosts
2020-03-22 18:21:19 +00:00
# ALLOWED_HOSTS="localhost,127.0.0.1,[::1]"
2020-03-27 20:27:32 +00:00
OL_URL=https://openlibrary.org
## Database backend to use.
2020-02-15 22:19:36 +00:00
## Default is postgres, sqlite is for dev quickstart only (NOT production!!!)
2020-03-22 18:21:19 +00:00
FEDIREADS_DATABASE_BACKEND=postgres
2020-03-27 20:27:32 +00:00
MEDIA_ROOT=images/
2020-03-22 18:21:19 +00:00
2020-03-27 20:27:32 +00:00
POSTGRES_PASSWORD=fedireads
POSTGRES_USER=fedireads
POSTGRES_DB=fedireads
2020-03-29 00:23:43 +00:00
POSTGRES_HOST=db
2020-03-22 21:33:26 +00:00
RABBITMQ_DEFAULT_USER=rabbit
RABBITMQ_DEFAULT_PASS=changeme
CELERY_BROKER=amqp://rabbit:changeme@rabbitmq:5672