mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-01 04:10:06 -05:00
Update .env.template
Matched the db user to that of the install instructions, fixed some grammar/spelling error and simplified wording...hopefully.
This commit is contained in:
@@ -5,26 +5,26 @@ DEBUG=0
|
|||||||
# hosts the application can run under e.g. recipes.mydomain.com,cooking.mydomain.com,...
|
# hosts the application can run under e.g. recipes.mydomain.com,cooking.mydomain.com,...
|
||||||
ALLOWED_HOSTS=*
|
ALLOWED_HOSTS=*
|
||||||
|
|
||||||
# random secret key, use for example base64 /dev/urandom | head -c50 to generate one
|
# random secret key, use for example `base64 /dev/urandom | head -c50` to generate one
|
||||||
SECRET_KEY=
|
SECRET_KEY=
|
||||||
|
|
||||||
# your default timezone
|
# your default timezone See https://timezonedb.com/time-zones for a list of timezones
|
||||||
TIMEZONE=Europe/Berlin
|
TIMEZONE=Europe/Berlin
|
||||||
|
|
||||||
# add only a database password if you want to run with the default postgres, otherwise change settings accordingly
|
# add only a database password if you want to run with the default postgres, otherwise change settings accordingly
|
||||||
DB_ENGINE=django.db.backends.postgresql
|
DB_ENGINE=django.db.backends.postgresql
|
||||||
POSTGRES_HOST=db_recipes
|
POSTGRES_HOST=db_recipes
|
||||||
POSTGRES_PORT=5432
|
POSTGRES_PORT=5432
|
||||||
POSTGRES_USER=djangodb
|
POSTGRES_USER=djangouser
|
||||||
POSTGRES_PASSWORD=
|
POSTGRES_PASSWORD=
|
||||||
POSTGRES_DB=djangodb
|
POSTGRES_DB=djangodb
|
||||||
|
|
||||||
# the default value for the user preference 'fractions' (enable/disable fraction support)
|
# the default value for the user preference 'fractions' (enable/disable fraction support)
|
||||||
# when unset: 0 (disabled)
|
# default: disabled=0
|
||||||
FRACTION_PREF_DEFAULT=0
|
FRACTION_PREF_DEFAULT=0
|
||||||
|
|
||||||
# the default value for the user preference 'comments' (enable/disable commenting system)
|
# the default value for the user preference 'comments' (enable/disable commenting system)
|
||||||
# when unset: 1 (true)
|
# default comments enabled=1
|
||||||
COMMENT_PREF_DEFAULT=1
|
COMMENT_PREF_DEFAULT=1
|
||||||
|
|
||||||
# Users can set a amount of time after which the shopping list is refreshed when they are in viewing mode
|
# Users can set a amount of time after which the shopping list is refreshed when they are in viewing mode
|
||||||
@@ -47,13 +47,13 @@ SHOPPING_MIN_AUTOSYNC_INTERVAL=5
|
|||||||
# when unset: 1 (true) - this is temporary until an appropriate amount of time has passed for everyone to migrate
|
# when unset: 1 (true) - this is temporary until an appropriate amount of time has passed for everyone to migrate
|
||||||
GUNICORN_MEDIA=0
|
GUNICORN_MEDIA=0
|
||||||
|
|
||||||
# allow authentication via reverse proxy (e.g. authelia), leave of if you dont know what you are doing
|
# allow authentication via reverse proxy (e.g. authelia), leave off if you dont know what you are doing
|
||||||
# see docs for more information https://vabene1111.github.io/recipes/features/authentication/
|
# see docs for more information https://vabene1111.github.io/recipes/features/authentication/
|
||||||
# when unset: 0 (false)
|
# when unset: 0 (false)
|
||||||
REVERSE_PROXY_AUTH=0
|
REVERSE_PROXY_AUTH=0
|
||||||
|
|
||||||
|
|
||||||
# allows you to setup o auth providers
|
# allows you to setup OAuth providers
|
||||||
# see docs for more information https://vabene1111.github.io/recipes/features/authentication/
|
# see docs for more information https://vabene1111.github.io/recipes/features/authentication/
|
||||||
# SOCIAL_PROVIDERS = allauth.socialaccount.providers.github, allauth.socialaccount.providers.nextcloud,
|
# SOCIAL_PROVIDERS = allauth.socialaccount.providers.github, allauth.socialaccount.providers.nextcloud,
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user