27 lines
743 B
Python
27 lines
743 B
Python
|
import os
|
||
|
|
||
|
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
|
||
|
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.0/howto/deployment/checklist/
|
||
|
|
||
|
# SECURITY WARNING: keep the secret key used in production secret!
|
||
|
SECRET_KEY = '0@pae)7!dj-%xmn$(hp1%j79ce@b)e7t$5n4z*=i_8w$$i5hv2'
|
||
|
|
||
|
# SECURITY WARNING: don't run with debug turned on in production!
|
||
|
DEBUG = True
|
||
|
|
||
|
ALLOWED_HOSTS = []
|
||
|
|
||
|
# Database
|
||
|
# https://docs.djangoproject.com/en/2.0/ref/settings/#databases
|
||
|
|
||
|
DATABASES = {
|
||
|
'default': {
|
||
|
'ENGINE': 'django.db.backends.sqlite3',
|
||
|
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
|
||
|
}
|
||
|
}
|