local settings

This commit is contained in:
ix 2021-09-06 20:12:03 +02:00
parent f453512f4b
commit f53eb4d924
1 changed files with 5 additions and 2 deletions

View File

@ -12,6 +12,11 @@ https://docs.djangoproject.com/en/2.2/ref/settings/
import os
from django.utils.translation import gettext_lazy as _
from local_settings import *
try:
from local_settings import *
except ImportError:
pass
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
@ -20,8 +25,6 @@ BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/2.2/howto/deployment/checklist/
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = 'secret'
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True