From f998022c61a36c7f95486921d0aae58673e84810 Mon Sep 17 00:00:00 2001 From: Kumi Date: Sun, 27 Dec 2020 21:04:25 +0100 Subject: [PATCH] Add time zone setting to localsettings --- localsettings.dist.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/localsettings.dist.py b/localsettings.dist.py index 3e98fc0..5e72e95 100644 --- a/localsettings.dist.py +++ b/localsettings.dist.py @@ -8,6 +8,10 @@ SECRET_KEY = "longrandomstring" DEBUG = False +# Specify the time zone you are in. This will affect the times displayed in the application. + +TIME_ZONE = "Europe/Vienna" + # You may set this variable to a list of domain names that are allowed to be used to access your instance. ALLOWED_HOSTS = ["*"] # Rationale: The application should be running behind a reverse proxy anyway if it's public - let that handle which hosts are allowed