Changeset - c962a1d10052
[Not reviewed]
0 1 0
Ben Sturmfels (bsturmfels) - 1 month ago 2024-03-20 22:53:19
ben@sturm.com.au
Set USE_TZ = False to avoid default changing in Django 5
1 file changed with 1 insertions and 0 deletions:
0 comments (0 inline, 0 general)
conservancy/settings/base.py
Show inline comments
...
 
@@ -115,12 +115,13 @@ TEMPLATES = [
 
    }
 
]
 

	
 
# Internationalization
 
TIME_ZONE = 'America/New_York'
 
LANGUAGE_CODE = 'en-us'
 
USE_TZ = False
 

	
 
STATIC_URL = '/static/'
 
STATIC_ROOT = BASE_DIR.parent / 'collected_static'
 
STATICFILES_DIRS = [
 
    BASE_DIR / 'static',
 
]
0 comments (0 inline, 0 general)