# Secret Key: Replace this by a long random string. # You can use django.core.management.utils.get_random_secret_key to generate one. SECRET_KEY = "replaceme!" # Database settings # This application is tested only with MariaDB/MySQL. # You will have to edit settings.py if you want to use Postgres, SQLite, etc. DB_HOST = "localhost" DB_PORT = 3306 DB_USER = "essensplan" DB_PASS = "secret" DB_NAME = "essensplan" # Whether debug messages should be output - set to False in production (exposes sensitive data) DEBUG = True # Which hostnames may be used to access the system - by default accepts "localhost", add "*" to allow any hostname ALLOWED_HOSTS = []