mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2025-12-24 02:39:20 -05:00
22 lines
911 B
Plaintext
22 lines
911 B
Plaintext
# ---------------------------------------------------------------------------
|
|
# This template contains only required options.
|
|
# Visit the docs to find more https://docs.tandoor.dev/system/configuration/
|
|
# ---------------------------------------------------------------------------
|
|
|
|
# random secret key, use for example `base64 /dev/urandom | head -c50` to generate one
|
|
SECRET_KEY=
|
|
|
|
# your default timezone See https://timezonedb.com/time-zones for a list of timezones
|
|
TZ=Europe/Berlin
|
|
|
|
# allowed hosts (see documentation), should be set to your hostname(s) but might be * (default) for some proxies/providers
|
|
# ALLOWED_HOSTS=recipes.mydomain.com
|
|
|
|
# add only a database password if you want to run with the default postgres, otherwise change settings accordingly
|
|
DB_ENGINE=django.db.backends.postgresql
|
|
POSTGRES_HOST=db_recipes
|
|
POSTGRES_DB=djangodb
|
|
POSTGRES_PORT=5432
|
|
POSTGRES_USER=djangouser
|
|
POSTGRES_PASSWORD=
|