From a81e9f8349a7adb26faebf61173d48b08d04b16d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20Z=C3=BCrcher?= Date: Sat, 29 Nov 2025 15:51:38 +0100 Subject: [PATCH] add country timezone settings to env file close #27 --- backend/env/env.go | 1 + backend/example/example.env | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/backend/env/env.go b/backend/env/env.go index c6d293e..414e001 100644 --- a/backend/env/env.go +++ b/backend/env/env.go @@ -26,6 +26,7 @@ const ( Organization EnvKey = "ORGANIZATION" DOMAIN EnvKey = "DOMAIN" AllowOrigin EnvKey = "ALLOWORIGIN" + TimeZone EnvKey = "TMEZONE" ) const ( diff --git a/backend/example/example.env b/backend/example/example.env index 65f8a49..dd81cf6 100644 --- a/backend/example/example.env +++ b/backend/example/example.env @@ -11,4 +11,5 @@ FULLCHAIN=your_certificate_fullchain_file ACCESS_SECRET=your_32bit_long_access_secret REFRESH_SECRET=your_32bit_long_referesh_secret ALLOWORIGIN=all_allowed_urls -DOMAIN=your_domain \ No newline at end of file +DOMAIN=your_domain +TIMEZONE=your_timezone in IANA format \ No newline at end of file