From df81aec02e22a9c0483dddada72bbdbf1c4a93b9 Mon Sep 17 00:00:00 2001 From: tdvantine <56764154+tdvantine@users.noreply.github.com> Date: Mon, 15 Feb 2021 11:25:58 -0700 Subject: [PATCH] Update .env.template Matched the db user to that of the install instructions, fixed some grammar/spelling error and simplified wording...hopefully. --- .env.template | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.env.template b/.env.template index 1b5c11e9b..ecc639192 100644 --- a/.env.template +++ b/.env.template @@ -5,26 +5,26 @@ DEBUG=0 # hosts the application can run under e.g. recipes.mydomain.com,cooking.mydomain.com,... 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= -# your default timezone +# your default timezone See https://timezonedb.com/time-zones for a list of timezones TIMEZONE=Europe/Berlin # 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_PORT=5432 -POSTGRES_USER=djangodb +POSTGRES_USER=djangouser POSTGRES_PASSWORD= POSTGRES_DB=djangodb # the default value for the user preference 'fractions' (enable/disable fraction support) -# when unset: 0 (disabled) +# default: disabled=0 FRACTION_PREF_DEFAULT=0 # the default value for the user preference 'comments' (enable/disable commenting system) -# when unset: 1 (true) +# default comments enabled=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 @@ -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 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/ # when unset: 0 (false) 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/ # SOCIAL_PROVIDERS = allauth.socialaccount.providers.github, allauth.socialaccount.providers.nextcloud,