Set USE_TZ = False to avoid default changing in Django 5

This commit is contained in:
Ben Sturmfels 2024-03-21 09:53:19 +11:00
parent 440b4f864a
commit c962a1d100
Signed by: bsturmfels
GPG key ID: 023C05E2C9C068F0

View file

@ -118,6 +118,7 @@ TEMPLATES = [
# Internationalization
TIME_ZONE = 'America/New_York'
LANGUAGE_CODE = 'en-us'
USE_TZ = False
STATIC_URL = '/static/'
STATIC_ROOT = BASE_DIR.parent / 'collected_static'