import logging DATABASES = { 'default': { 'NAME': 'newsblur', 'ENGINE': 'django.db.backends.mysql', 'USER': 'newsblur', 'PASSWORD': '', 'HOST': '127.0.0.1', }, } MONGO_DB = { 'name': 'newsblur', 'host': '127.0.0.1', 'port': 27017 } DEBUG = True MEDIA_URL = '/media/' SECRET_KEY = 'YOUR SECRET KEY' CACHE_BACKEND = 'dummy:///' # CACHE_BACKEND = 'locmem:///' # CACHE_BACKEND = 'memcached://127.0.0.1:11211' EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend' # Set this to the username that is shown on the homepage to unauthenticated users. HOMEPAGE_USERNAME = 'conesus' # Google Reader OAuth API Keys OAUTH_KEY = 'www.example.com' OAUTH_SECRET = 'SECRET_KEY_FROM_GOOGLE' # Celery RabbitMQ Broker BROKER_HOST = "127.0.0.1" # Logging (setup for development) LOG_TO_STREAM = True if len(logging._handlerList) < 1: LOG_FILE = '~/newsblur/logs/development.log' logging.basicConfig(level=logging.DEBUG, format='%(asctime)-12s: %(message)s', datefmt='%b %d %H:%M:%S', handler=logging.StreamHandler) S3_ACCESS_KEY = 'XXX' S3_SECRET = 'SECRET' S3_BACKUP_BUCKET = 'newsblur_backups'