mirror of
https://github.com/pinry/pinry.git
synced 2025-11-13 16:45:41 +01:00
17 lines
250 B
Python
17 lines
250 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 = 'fake-key'
|