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