Revert "remove the production settings"

This reverts commit d8b09fd735.
This commit is contained in:
Andreas Zweili 2019-08-11 18:14:18 +02:00
parent b9efd4ed60
commit 9778d60f51
1 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,22 @@
from .base import *
ALLOWED_HOSTS = [
'inventory.2li.local',
]
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = 'kzx(i9^@*g^cgp(_3052%*1d%zyu^2z_@pgso5!_q@jb-j%4m='
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = False
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.postgresql',
'NAME': 'postgres',
'USER': 'postgres',
'HOST': 'db',
'PORT': 5432,
}
}