зеркало из https://github.com/mozilla/mozillians.git
Added django-sha256
This commit is contained in:
Родитель
d118a3bbdc
Коммит
5db7edbabc
|
@ -1,3 +1,8 @@
|
|||
-e git://github.com/django/django@36c82ac8#egg=django
|
||||
|
||||
# Security
|
||||
-e git://github.com/fwenzel/django-sha256.git#egg=django-sha256
|
||||
|
||||
# Celery: Message queue
|
||||
celery
|
||||
django-celery
|
||||
|
|
|
@ -103,6 +103,8 @@ INSTALLED_APPS = (
|
|||
# 'django.contrib.admindocs',
|
||||
)
|
||||
|
||||
AUTHENTICATION_BACKENDS = ('django_sha256.auth.Sha256Backend',)
|
||||
|
||||
## Celery
|
||||
BROKER_HOST = 'localhost'
|
||||
BROKER_PORT = 5672
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
# This is an example settings_local.py file.
|
||||
# Copy it and add your local settings here.
|
||||
|
||||
from settings import *
|
||||
|
||||
|
||||
DATABASES = {
|
||||
'default': {
|
||||
'ENGINE': 'django.db.backends.mysql',
|
||||
|
@ -14,6 +17,8 @@ DATABASES = {
|
|||
'charset' : 'utf8',
|
||||
'use_unicode' : True,
|
||||
},
|
||||
'TEST_CHARSET': 'utf8',
|
||||
'TEST_COLLATION': 'utf8_general_ci',
|
||||
},
|
||||
}
|
||||
|
||||
|
|
2
vendor
2
vendor
|
@ -1 +1 @@
|
|||
Subproject commit 2da8977889135eba7a376749614ea5e17ca7f363
|
||||
Subproject commit d358d33f37c1c73d68c384ea0953ca34194e0282
|
Загрузка…
Ссылка в новой задаче