Moving to devops in virtualenvs

* Default DB set to fuel_devops universal naming schema

Change-Id: I6cc0bd47f59d49d4f572cee9ac9252b45959673b
Signed-off-by: Igor Shishkin <ishishkin@mirantis.com>
This commit is contained in:
Igor Shishkin
2015-02-10 22:36:36 +03:00
parent a9f0ff362c
commit 90a32a23b6

View File

@@ -28,10 +28,10 @@ DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'fuel_devops',
'USER': 'postgres',
'PASSWORD': '',
'HOST': '',
'PORT': '',
'USER': 'fuel_devops',
'PASSWORD': 'fuel_devops',
'HOST': '127.0.0.1',
'PORT': '5432',
'TEST_CHARSET': 'UTF8'
}
}