mirror of
https://github.com/pinry/pinry.git
synced 2025-11-13 00:25:41 +01:00
18 lines
272 B
Python
18 lines
272 B
Python
from pinry.settings import *
|
|
|
|
import os
|
|
|
|
|
|
DEBUG = True
|
|
TEMPLATE_DEBUG = DEBUG
|
|
ALLOWED_HOSTS = ['*']
|
|
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.sqlite3',
|
|
'NAME': os.path.join(SITE_ROOT, 'development.db'),
|
|
}
|
|
}
|
|
|
|
SECRET_KEY = 'fake-key'
|