mirror of https://github.com/snachodog/mybuddy.git
Document that `TIME_ZONE` setting is now a default
This commit is contained in:
parent
7727e254c3
commit
d4291712bd
|
@ -124,7 +124,7 @@ create the following settings before pushing:
|
||||||
heroku config:set DJANGO_SETTINGS_MODULE=babybuddy.settings.heroku
|
heroku config:set DJANGO_SETTINGS_MODULE=babybuddy.settings.heroku
|
||||||
heroku config:set SECRET_KEY=<CHANGE TO SOMETHING RANDOM>
|
heroku config:set SECRET_KEY=<CHANGE TO SOMETHING RANDOM>
|
||||||
heroku config:set DISABLE_COLLECTSTATIC=1
|
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
|
See [Configuration](#configuration) for other settings that can be controlled
|
||||||
by `heroku config:set`.
|
by `heroku config:set`.
|
||||||
|
@ -365,8 +365,9 @@ See also [Django's documentation on the SECRET_KEY setting](https://docs.djangop
|
||||||
|
|
||||||
*Default: Etc/UTC*
|
*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)
|
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.
|
for all possible values. This value can be overridden per use from the user
|
||||||
|
settings form.
|
||||||
|
|
||||||
## Languages
|
## Languages
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue