reinheit/config/settings/production.py

15 lines
224 B
Python
Raw Normal View History

2024-06-27 19:38:36 +01:00
from .base import *
2024-06-27 19:13:43 +01:00
DATABASES = {
"default": {
"ENGINE": "django.db.backends.postgresql",
"NAME": "reinheit",
"USER": "reinheit",
}
}
DEBUG = False
2024-06-27 19:37:13 +01:00
ALLOWED_HOSTS = ["beer.gwairfelin.com"]