修改部分设置项的位置

This commit is contained in:
virusdefender
2015-08-02 08:50:38 +08:00
parent cac9ac91f6
commit 4f40f28a8a
2 changed files with 20 additions and 17 deletions

View File

@@ -1,2 +1,19 @@
# coding=utf-8
LOG_PATH = "LOG/"
import os
LOG_PATH = "LOG/"
# Database
# https://docs.djangoproject.com/en/1.8/ref/settings/#databases
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
'CONN_MAX_AGE': 1,
}
}
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True