mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
Seacucumber -> Django-ses. Celery isn't playing well.
This commit is contained in:
parent
8a258f91c7
commit
3b38be1676
1 changed files with 5 additions and 4 deletions
|
@ -47,7 +47,7 @@ LOGIN_URL = '/reader/login'
|
|||
# Examples: "http://foo.com/media/", "/media/".
|
||||
ADMIN_MEDIA_PREFIX = '/media/admin/'
|
||||
SECRET_KEY = 'YOUR_SECRET_KEY'
|
||||
EMAIL_BACKEND = 'seacucumber.backend.SESBackend'
|
||||
EMAIL_BACKEND = 'django_ses.SESBackend'
|
||||
|
||||
|
||||
# ===============
|
||||
|
@ -323,7 +323,8 @@ INSTALLED_APPS = (
|
|||
'django.contrib.admin',
|
||||
'django_extensions',
|
||||
'djcelery',
|
||||
'seacucumber',
|
||||
# 'seacucumber',
|
||||
'django_ses',
|
||||
'compress',
|
||||
'apps.rss_feeds',
|
||||
'apps.reader',
|
||||
|
@ -430,8 +431,8 @@ from local_settings import *
|
|||
COMPRESS = not DEBUG
|
||||
TEMPLATE_DEBUG = DEBUG
|
||||
ACCOUNT_ACTIVATION_DAYS = 30
|
||||
AWS_SECRET_ACCESS_KEY = S3_ACCESS_KEY
|
||||
AWS_ACCESS_KEY_ID = S3_SECRET
|
||||
AWS_ACCESS_KEY_ID = S3_ACCESS_KEY
|
||||
AWS_SECRET_ACCESS_KEY = S3_SECRET
|
||||
|
||||
def custom_show_toolbar(request):
|
||||
return DEBUG
|
||||
|
|
Loading…
Add table
Reference in a new issue