Merge "Moving to python-devops in virtualenvs" into stable

This commit is contained in:
Jenkins 2015-02-11 14:21:53 +00:00 committed by Gerrit Code Review
commit 0bc23e2e3e
2 changed files with 6 additions and 5 deletions

View File

@ -27,11 +27,11 @@ INSTALLED_APPS = ['south', 'devops']
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'postgres',
'USER': 'postgres',
'PASSWORD': '',
'HOST': '',
'PORT': '',
'NAME': 'devops',
'USER': 'devops',
'PASSWORD': 'devops',
'HOST': '127.0.0.1',
'PORT': '5432',
'TEST_CHARSET': 'UTF8'
}
}

View File

@ -42,5 +42,6 @@ setup(
'south',
'PyYAML',
'mock',
'libvirt-python'
]
)