Skip to content

Commit

Permalink
add Timezones global
Browse files Browse the repository at this point in the history
  • Loading branch information
BenediktMKuehne committed Nov 17, 2023
1 parent 76f762e commit e467200
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions embark/embark/settings/deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"""
from pathlib import Path
import os
import pytz

from dotenv import load_dotenv

Expand Down Expand Up @@ -231,6 +232,8 @@

USE_TZ = False

TIMEZONES = tuple(zip(pytz.all_timezones, pytz.all_timezones))

# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/3.2/howto/static-files/
STATIC_URL = '/static/'
Expand Down

0 comments on commit e467200

Please sign in to comment.