use django 1.3.x
This commit is contained in:
parent
e96d7f1d23
commit
d6864c5587
2 changed files with 9 additions and 8 deletions
|
@ -30,13 +30,14 @@ DEFAULT_FROM_EMAIL='admin@' + URL.split('/')[0]
|
|||
|
||||
MANAGERS = ADMINS
|
||||
|
||||
DATABASE_ENGINE = 'sqlite3' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
|
||||
DATABASE_NAME = 'dev.sqlite' # Or path to database file if using sqlite3.
|
||||
DATABASE_USER = '' # Not used with sqlite3.
|
||||
DATABASE_PASSWORD = '' # Not used with sqlite3.
|
||||
DATABASE_HOST = '' # Set to empty string for localhost. Not used with sqlite3.
|
||||
DATABASE_PORT = '' # Set to empty string for default. Not used with sqlite3.
|
||||
|
||||
DATABASES = {
|
||||
'default': {
|
||||
'NAME': 'pandora',
|
||||
'ENGINE': 'django.db.backends.postgresql_psycopg2',
|
||||
'USER': 'pandora',
|
||||
'PASSWORD': ''
|
||||
}
|
||||
}
|
||||
|
||||
#rabbitmq connection settings
|
||||
CELERY_RESULT_BACKEND = "database"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
-e svn+http://code.djangoproject.com/svn/django/branches/releases/1.2.X#egg=django
|
||||
-e svn+http://code.djangoproject.com/svn/django/branches/releases/1.3.X#egg=django
|
||||
#South
|
||||
-e bzr+http://code.0x2620.org/python-ox/#egg=python-ox
|
||||
-e bzr+http://code.0x2620.org/oxtimeline/#egg=oxtimeline
|
||||
|
|
Loading…
Reference in a new issue