mirror of https://github.com/snachodog/mybuddy.git
16 lines
317 B
Python
16 lines
317 B
Python
|
from .base import * # noqa: F401,F403
|
||
|
|
||
|
|
||
|
# Database
|
||
|
# https://docs.djangoproject.com/en/1.11/ref/settings/#databases
|
||
|
|
||
|
DATABASES = {
|
||
|
'default': {
|
||
|
'ENGINE': 'django.db.backends.postgresql_psycopg2',
|
||
|
'NAME': 'postgres',
|
||
|
'USER': 'postgres',
|
||
|
'HOST': 'db',
|
||
|
'PORT': 5432,
|
||
|
}
|
||
|
}
|