15 lines
309 B
Python
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',
|
|
},
|
|
}
|