This commit is contained in:
Fred Wenzel 2010-12-29 16:07:10 -08:00
Родитель d118a3bbdc
Коммит 5db7edbabc
4 изменённых файлов: 13 добавлений и 1 удалений

Просмотреть файл

@ -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

@ -1 +1 @@
Subproject commit 2da8977889135eba7a376749614ea5e17ca7f363
Subproject commit d358d33f37c1c73d68c384ea0953ca34194e0282