Use TZ in settings.py

This commit is contained in:
Raphael
2023-06-19 11:26:05 +02:00
committed by GitHub
parent a09b1812d8
commit c097913a80

View File

@@ -178,7 +178,7 @@ AUTH_PASSWORD_VALIDATORS = [
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'UTC'
TIME_ZONE = os.environ.get('TZ', 'UTC')
USE_I18N = True