Document that `TIME_ZONE` setting is now a default

This commit is contained in:
Christopher C. Wells 2020-02-14 10:49:18 -08:00 committed by Christopher Charbonneau Wells
parent 7727e254c3
commit d4291712bd
2 changed files with 5 additions and 4 deletions

View File

@ -124,7 +124,7 @@ create the following settings before pushing:
heroku config:set DJANGO_SETTINGS_MODULE=babybuddy.settings.heroku
heroku config:set SECRET_KEY=<CHANGE TO SOMETHING RANDOM>
heroku config:set DISABLE_COLLECTSTATIC=1
heroku config:set TIME_ZONE=<YOUR DESIRED TIMEZONE>
heroku config:set TIME_ZONE=<DESIRED DEFAULT TIMEZONE>
See [Configuration](#configuration) for other settings that can be controlled
by `heroku config:set`.
@ -365,8 +365,9 @@ See also [Django's documentation on the SECRET_KEY setting](https://docs.djangop
*Default: Etc/UTC*
The time zone to use for the instance. See [List of tz database time zones](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones)
for all possible values.
The default time zone to use for the instance. See [List of tz database time zones](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones)
for all possible values. This value can be overridden per use from the user
settings form.
## Languages

View File

@ -32,7 +32,7 @@
"value": "1"
},
"TIME_ZONE": {
"description": "Sets the instance time zone.",
"description": "Sets the instance default time zone.",
"value": "Etc/UTC"
}
},