reinheit/config/settings/production.py

14 lines
224 B
Python

from .base import *
DATABASES = {
"default": {
"ENGINE": "django.db.backends.postgresql",
"NAME": "reinheit",
"USER": "reinheit",
}
}
DEBUG = False
ALLOWED_HOSTS = ["beer.gwairfelin.com"]