14 lines
224 B
Python
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"]
|