From a2f910476e76ba7c7c60237c33bde04c2078687f Mon Sep 17 00:00:00 2001 From: Benni Baermann Date: Thu, 18 Mar 2021 14:16:49 +0100 Subject: [PATCH] missing imports in production setting added --- eva/settings_production.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/eva/settings_production.py b/eva/settings_production.py index 4c649ab..0e61c92 100644 --- a/eva/settings_production.py +++ b/eva/settings_production.py @@ -10,8 +10,12 @@ For the full list of settings and their values, see https://docs.djangoproject.com/en/3.1/ref/settings/ """ +import json +import os from pathlib import Path +from django.core.exceptions import ImproperlyConfigured + # Build paths inside the project like this: BASE_DIR / 'subdir'. BASE_DIR = Path(__file__).resolve().parent.parent