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

32 lines
486 B
Python

import os
import dj_database_url
from .base import *
DEBUG = True
TEMPLATE_DEBUG = DEBUG
ALLOWED_HOSTS = ('127.0.0.1', 'localhost')
INTERNAL_IPS = ('127.0.0.1', )
DATABASES = {
'default': dj_database_url.parse('postgres:///shelfzilla')
}
# Bower
STATICFILES_DIRS += (
os.path.join(BASE_DIR, "..", "static_components"),
)
# Apps
INSTALLED_APPS += (
'django.contrib.webdesign',
'rosetta',
)
FILER_DUMP_PAYLOAD = True
MEDIA_URL = '/media/'
STATIC_URL = '/static/'