fmartingr
/
shelfzilla
Archived
1
0
Fork 0
This repository has been archived on 2021-06-29. You can view files and clone it, but cannot push or open issues or pull requests.
shelfzilla/shelfzilla/settings/local.py

11 lines
160 B
Python
Raw Normal View History

import dj_database_url
2014-03-18 12:48:12 +00:00
from .base import *
2014-03-18 12:48:12 +00:00
DEBUG = True
TEMPLATE_DEBUG = True
DATABASES = {
'default': dj_database_url.parse('postgres:///shelfzilla')
}