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
|
MANAGERS = ADMINS
|
||||||
|
|
||||||
DATABASE_ENGINE = 'sqlite3' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
|
DATABASES = {
|
||||||
DATABASE_NAME = 'dev.sqlite' # Or path to database file if using sqlite3.
|
'default': {
|
||||||
DATABASE_USER = '' # Not used with sqlite3.
|
'NAME': 'pandora',
|
||||||
DATABASE_PASSWORD = '' # Not used with sqlite3.
|
'ENGINE': 'django.db.backends.postgresql_psycopg2',
|
||||||
DATABASE_HOST = '' # Set to empty string for localhost. Not used with sqlite3.
|
'USER': 'pandora',
|
||||||
DATABASE_PORT = '' # Set to empty string for default. Not used with sqlite3.
|
'PASSWORD': ''
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#rabbitmq connection settings
|
#rabbitmq connection settings
|
||||||
CELERY_RESULT_BACKEND = "database"
|
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
|
#South
|
||||||
-e bzr+http://code.0x2620.org/python-ox/#egg=python-ox
|
-e bzr+http://code.0x2620.org/python-ox/#egg=python-ox
|
||||||
-e bzr+http://code.0x2620.org/oxtimeline/#egg=oxtimeline
|
-e bzr+http://code.0x2620.org/oxtimeline/#egg=oxtimeline
|
||||||
|
|
Loading…
Reference in a new issue