Skip to content

Commit

Permalink
Fix time zone
Browse files Browse the repository at this point in the history
  • Loading branch information
henhuy committed May 7, 2024
1 parent 95760b4 commit a03181c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions config/settings/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
# though not all of them may be available with every OS.
# In Windows, this must be set to your system time zone.
TIME_ZONE = "UTC+2"
TIME_ZONE = "Europe/Berlin"
# https://docs.djangoproject.com/en/dev/ref/settings/#language-code
LANGUAGE_CODE = "en-us"
# https://docs.djangoproject.com/en/dev/ref/settings/#languages
Expand Down Expand Up @@ -307,7 +307,9 @@
# https://docs.allauth.org/en/latest/socialaccount/configuration.html
SOCIALACCOUNT_ADAPTER = "building_dialouge_webapp.users.adapters.SocialAccountAdapter"
# https://docs.allauth.org/en/latest/socialaccount/configuration.html
SOCIALACCOUNT_FORMS = {"signup": "building_dialouge_webapp.users.forms.UserSocialSignupForm"}
SOCIALACCOUNT_FORMS = {
"signup": "building_dialouge_webapp.users.forms.UserSocialSignupForm",
}
# django-compressor
# ------------------------------------------------------------------------------
# https://django-compressor.readthedocs.io/en/latest/quickstart/#installation
Expand Down

0 comments on commit a03181c

Please sign in to comment.