mirror of
https://github.com/pinry/pinry.git
synced 2025-11-13 16:45:41 +01:00
19 lines
346 B
Python
19 lines
346 B
Python
from pinry.settings import *
|
|
|
|
import os
|
|
|
|
|
|
DEBUG = False
|
|
TEMPLATE_DEBUG = DEBUG
|
|
|
|
# TODO: I recommend using psycopg2 w/ postgres but sqlite3 is good enough.
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.sqlite3',
|
|
'NAME': os.path.join(SITE_ROOT, 'production.db'),
|
|
}
|
|
}
|
|
|
|
# TODO: Be sure to set this.
|
|
SECRET_KEY = ''
|