@@ -1,29 +0,0 @@ |
||
| 1 |
-# -*- coding: utf-8 -*- |
|
| 2 |
- |
|
| 3 |
-import os |
|
| 4 |
- |
|
| 5 |
- |
|
| 6 |
-BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) |
|
| 7 |
-PROJ_DIR = os.path.abspath(os.path.dirname(os.path.abspath(__file__))) |
|
| 8 |
- |
|
| 9 |
-TEMPLATES = [ |
|
| 10 |
- {
|
|
| 11 |
- 'BACKEND': 'django.template.backends.django.DjangoTemplates', |
|
| 12 |
- 'DIRS': [os.path.join(BASE_DIR, 'templates')], |
|
| 13 |
- # 'APP_DIRS': True, |
|
| 14 |
- 'OPTIONS': {
|
|
| 15 |
- 'context_processors': [ |
|
| 16 |
- 'django.template.context_processors.debug', |
|
| 17 |
- 'django.template.context_processors.request', |
|
| 18 |
- 'django.contrib.auth.context_processors.auth', |
|
| 19 |
- 'django.contrib.messages.context_processors.messages', |
|
| 20 |
- ], |
|
| 21 |
- 'loaders': [ |
|
| 22 |
- 'django.template.loaders.filesystem.Loader', |
|
| 23 |
- 'django.template.loaders.app_directories.Loader', |
|
| 24 |
- ], |
|
| 25 |
- }, |
|
| 26 |
- }, |
|
| 27 |
-] |
|
| 28 |
- |
|
| 29 |
-DOMAIN = 'http://127.0.0.1:9997/' |