SECRET_KEY = "hi there"

DATABASES = {
    "default": {
        "ENGINE": "django.db.backends.mysql",
        "NAME": "gnouseu",
        "USER": "root",
        "PASSWORD": "root",
        "OPTIONS": {"charset": "utf8mb4"},
    }
}

ALLOWED_HOSTS = ["127.0.0.1", "localhost", "192.168.1.21", "django", "gnous.eu"]

DEBUG = True