mirror of
https://github.com/pinry/pinry.git
synced 2025-11-16 18:05:51 +01:00
25 lines
571 B
Python
25 lines
571 B
Python
|
|
from .base import *
|
||
|
|
|
||
|
|
|
||
|
|
# SECURITY WARNING: keep the secret key used in production secret!
|
||
|
|
SECRET_KEY = os.environ['SECRET_KEY']
|
||
|
|
|
||
|
|
# SECURITY WARNING: don't run with debug turned on in production!
|
||
|
|
DEBUG = False
|
||
|
|
|
||
|
|
# SECURITY WARNING: use your actual domain name in production!
|
||
|
|
ALLOWED_HOSTS = ['*']
|
||
|
|
|
||
|
|
# Database
|
||
|
|
# https://docs.djangoproject.com/en/1.10/ref/settings/#databases
|
||
|
|
|
||
|
|
DATABASES = {
|
||
|
|
'default': {
|
||
|
|
'ENGINE': 'django.db.backends.postgresql_psycopg2',
|
||
|
|
'NAME': 'postgres',
|
||
|
|
'USER': 'postgres',
|
||
|
|
'HOST': 'db',
|
||
|
|
'PORT': 5432,
|
||
|
|
}
|
||
|
|
}
|