mirror of
https://github.com/pinry/pinry.git
synced 2025-11-16 18:05:51 +01:00
Separating jenkins requirements and settings from the rest of the app.
This commit is contained in:
26
pinry/settings/jenkins.py
Normal file
26
pinry/settings/jenkins.py
Normal file
@@ -0,0 +1,26 @@
|
||||
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',
|
||||
)
|
||||
Reference in New Issue
Block a user