mirror of https://github.com/snachodog/mybuddy.git
17 lines
392 B
Python
17 lines
392 B
Python
from .base import *
|
|
|
|
|
|
# Database
|
|
# https://docs.djangoproject.com/en/1.11/ref/settings/#databases
|
|
|
|
DATABASES = {
|
|
'default': {
|
|
'ENGINE': 'django.db.backends.postgresql_psycopg2',
|
|
'NAME': 'gonano',
|
|
'USER': os.environ.get('DATA_DB_USER'),
|
|
'PASSWORD': os.environ.get('DATA_DB_PASS'),
|
|
'HOST': os.environ.get('DATA_DB_HOST'),
|
|
'PORT': '',
|
|
}
|
|
}
|