Update default time zone to au

This commit is contained in:
2024-11-09 09:10:51 +11:00
parent 470f81fac0
commit fc15d9093c
+4 -1
View File
@@ -192,9 +192,12 @@ REST_FRAMEWORK = {
}
# Time zone setting
TIME_ZONE = 'UTC'
TIME_ZONE = 'Australia/Melbourne'
USE_TZ = True
# Make sure Celery uses the same timezone
CELERY_TIMEZONE = TIME_ZONE
# Celery Configuration
CELERY_BROKER_URL = os.environ.get('CELERY_BROKER_URL', 'redis://localhost:6379/0')
CELERY_RESULT_BACKEND = os.environ.get('CELERY_RESULT_BACKEND', 'redis://localhost:6379/0')