Skip to content

Commit

Permalink
feat(settings): app time zone is America/Los_Angeles
Browse files Browse the repository at this point in the history
see https://docs.djangoproject.com/en/5.0/ref/settings/#std-setting-TIME_ZONE

> Note that this isn’t necessarily the time zone of the server.
> When USE_TZ is True, this is the default time zone that Django will use to display datetimes in templates
> and to interpret datetimes entered in forms.
  • Loading branch information
thekaveman committed Mar 26, 2024
1 parent e728782 commit 598c12f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion benefits/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,11 @@ def RUNTIME_ENVIRONMENT():

USE_I18N = True

TIME_ZONE = "UTC"
# See https://docs.djangoproject.com/en/5.0/ref/settings/#std-setting-TIME_ZONE
# > Note that this isn’t necessarily the time zone of the server.
# > When USE_TZ is True, this is the default time zone that Django will use to display datetimes in templates
# > and to interpret datetimes entered in forms.
TIME_ZONE = "America/Los_Angeles"
USE_TZ = True

# Static files (CSS, JavaScript, Images)
Expand Down

0 comments on commit 598c12f

Please sign in to comment.