diff --git a/{{ cookiecutter.project_slug }}/{{ cookiecutter.pkg_name }}/settings.py b/{{ cookiecutter.project_slug }}/{{ cookiecutter.pkg_name }}/settings.py index ecd4c52..b7d0026 100644 --- a/{{ cookiecutter.project_slug }}/{{ cookiecutter.pkg_name }}/settings.py +++ b/{{ cookiecutter.project_slug }}/{{ cookiecutter.pkg_name }}/settings.py @@ -18,6 +18,11 @@ class {{ cookiecutter.pkg_name.split('_')|map('capitalize')|join('') }}Mixin(Con BASE_DIR = Path(__file__).resolve(strict=True).parent.parent + # Optionally set the following to any of the timezones defined in, e.g., + # https://github.com/dmfilipenko/timezones.json/blob/master/timezones.json. + # + # TIME_ZONE = 'America/New_York' + @staticmethod def before_binding(configuration: ComposedConfiguration) -> None: # Install local apps first, to ensure any overridden resources are found first