equal
deleted
inserted
replaced
47 'HOST': 'localhost', # Set to empty string for localhost. Not used with sqlite3. |
47 'HOST': 'localhost', # Set to empty string for localhost. Not used with sqlite3. |
48 'PORT': '5432', # Set to empty string for default. Not used with sqlite3. |
48 'PORT': '5432', # Set to empty string for default. Not used with sqlite3. |
49 } |
49 } |
50 } |
50 } |
51 |
51 |
|
52 CACHES = { |
|
53 'default': { |
|
54 'BACKEND': 'django.core.cache.backends.db.DatabaseCache', |
|
55 'LOCATION': 'cache', |
|
56 } |
|
57 } |
|
58 |
52 DEBUG = True |
59 DEBUG = True |
53 TEMPLATE_DEBUG = DEBUG |
60 TEMPLATE_DEBUG = DEBUG |
54 |
61 |
55 LOG_FILE = os.path.abspath(os.path.join(BASE_DIR,"../log/log.txt")) |
62 LOG_FILE = os.path.abspath(os.path.join(BASE_DIR,"../log/log.txt")) |
56 LOG_LEVEL = logging.DEBUG |
63 LOG_LEVEL = logging.DEBUG |