missing imports in production setting added

This commit is contained in:
Benni Bärmann 2021-03-18 14:16:49 +01:00
parent abd7885abf
commit a2f910476e
1 changed files with 4 additions and 0 deletions

View File

@ -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