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

38 lines
731 B
Python
Raw Normal View History

import os
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
2014-08-24 13:01:17 +00:00
TEMPLATE_DEBUG = DEBUG
2014-11-04 22:36:19 +00:00
ALLOWED_HOSTS = ('127.0.0.1', 'localhost')
2014-08-24 13:01:17 +00:00
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',
'django_extensions',
)
FILER_DUMP_PAYLOAD = True
MEDIA_URL = '/media/'
STATIC_URL = '/static/'
2015-01-26 13:35:21 +00:00
EMAIL_BACKEND = 'django_mailgun.MailgunBackend'
MAILGUN_ACCESS_KEY = 'key-fdfc57f2bfb35a4ba5f9c1e3c30af373'
MAILGUN_SERVER_NAME = 'sandbox2dd21e486d144dc59742738b15e494ee.mailgun.org'
FROM_EMAIL = 'info@shelfzilla.com'