Mercurial > public > bravenewsurf
view bns_website/settings/local.py @ 6:48ff23eab86a
Enabled the admin. Created a "bands" app with a band model.
Created a generic view to display the bands.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 29 Oct 2011 17:11:58 -0500 |
parents | 134fbfc4acf6 |
children | d5f3bb516fd3 |
line wrap: on
line source
# Django local settings for bns_website project. from settings.base import * DEBUG = True TEMPLATE_DEBUG = DEBUG MEDIA_URL = '/media/' STATIC_URL = '/static/' ADMIN_MEDIA_PREFIX = '/static/admin/' DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', 'NAME': 'bravenewsurf', 'USER': SECRETS['DB_USER'], 'PASSWORD': SECRETS['DB_PASSWORD'], }, } LOGGING = { 'version': 1, 'disable_existing_loggers': True, 'formatters': { 'verbose': { 'format': '%(asctime)s %(levelname)s %(module)s %(process)d %(thread)d %(message)s' }, 'simple': { 'format': '%(asctime)s %(levelname)s %(message)s' }, }, 'handlers': { 'console': { 'class': 'logging.StreamHandler', 'level': 'DEBUG', 'formatter': 'simple', }, 'file': { 'class': 'logging.handlers.RotatingFileHandler', 'level': 'DEBUG', 'formatter': 'simple', 'filename': os.path.join(PROJECT_PATH, 'logs', 'bns.log'), 'mode': 'a', 'maxBytes': 100 * 1024, 'backupCount': 10, }, 'mail_admins': { 'class': 'django.utils.log.AdminEmailHandler', 'level': 'ERROR', 'formatter': 'simple', }, }, 'loggers': { 'django':{ 'level': 'WARNING', 'propagate': False, 'handlers': ['file'], }, }, 'root': { 'level': 'DEBUG', 'handlers': ['file'], }, }