mirror of https://github.com/snachodog/mybuddy.git
28 lines
566 B
Python
28 lines
566 B
Python
import os
|
|
|
|
from .base import * # noqa: F401,F403
|
|
|
|
|
|
# Production settings
|
|
# See babybuddy.settings.base for additional settings information.
|
|
|
|
SECRET_KEY = os.environ.get('SECRET_KEY')
|
|
|
|
ALLOWED_HOSTS = os.environ.get('ALLOWED_HOSTS', '').split(',')
|
|
|
|
DEBUG = os.environ.get('DEBUG', False)
|
|
|
|
|
|
# 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,
|
|
}
|
|
}
|