Skip to content
Snippets Groups Projects
Verified Commit 86bb64c3 authored by Ernesto Rico Schmidt's avatar Ernesto Rico Schmidt
Browse files

feat: get LANGUAGE_CODE from the environment variables

parent 363685e4
No related branches found
No related tags found
No related merge requests found
Pipeline #7400 passed
......@@ -41,7 +41,8 @@ DATABASES = {
}
TIME_ZONE = os.getenv("TZ", default="Europe/Vienna")
LANGUAGE_CODE = "de"
LANGUAGE_CODE = os.getenv("LANGUAGE_CODE", default="en-us")
USE_TZ = True # django-oidc-provider needs timezones in database
SECRET_KEY = os.getenv("SECRET_KEY", default="secret-key")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment