From b3331f170a6d2b399ca97d88f13436733d0f374b Mon Sep 17 00:00:00 2001 From: Christophe Siraut Date: Tue, 25 Aug 2020 13:00:10 +0200 Subject: [PATCH] debian: set timezone to paris but do not used tz as dates are stored in utc --- debian/settings.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/debian/settings.py b/debian/settings.py index ea62463..58c517c 100644 --- a/debian/settings.py +++ b/debian/settings.py @@ -12,6 +12,8 @@ DATABASES = { } } +TIME_ZONE = 'Europe/Paris' +USE_TZ = False AUTHENTICATION_BACKENDS = ( 'django.contrib.auth.backends.ModelBackend', 'mellon.backends.SAMLBackend')