Files
web2.0-backend/sikweb/.ci-settings.py
2017-09-20 21:15:46 +03:00

15 lines
309 B
Python

"""File containing CI settings."""
from sikweb.default_settings import *
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'ci',
'USER': 'postgres',
'PASSWORD': 'postgres',
'HOST': 'postgres',
'PORT': '5432',
},
}