from quotes.quotesapp.settings import * SECRET_KEY = os.environ["SECRET_KEY"] DEBUG = False ALLOWED_HOSTS = [ "quotes.bfob.gg", ] DATABASES = { "default": { "ENGINE": "django.db.backends.postgresql", "NAME": "quotesdb", } }