mirror of
https://github.com/pinry/pinry.git
synced 2025-11-16 09:55:50 +01:00
27 lines
375 B
Python
27 lines
375 B
Python
|
|
from pinry.settings import *
|
||
|
|
|
||
|
|
import os
|
||
|
|
|
||
|
|
|
||
|
|
DEBUG = True
|
||
|
|
TEMPLATE_DEBUG = DEBUG
|
||
|
|
|
||
|
|
|
||
|
|
DATABASES = {
|
||
|
|
'default': {
|
||
|
|
'ENGINE': 'django.db.backends.sqlite3',
|
||
|
|
'NAME': os.path.join(SITE_ROOT, 'development.db'),
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
SECRET_KEY = ''
|
||
|
|
|
||
|
|
|
||
|
|
INSTALLED_APPS += ('django_jenkins',)
|
||
|
|
PROJECT_APPS = (
|
||
|
|
'pinry.vendor',
|
||
|
|
'pinry.core',
|
||
|
|
'pinry.pins',
|
||
|
|
'pinry.api',
|
||
|
|
)
|