# SECURITY WARNING: keep the secret key used in production secret! SECRET_KEY = 'longsecretstring!' # SECURITY WARNING: don't run with debug turned on in production! DEBUG = True ALLOWED_HOSTS = ["*"] # PostgreSQL server settings DB_HOST = "postgresql.server" DB_PORT = 5432 DB_NAME = "postgresql_database" DB_USER = "postgresql_username" DB_PASS = "postgresql_password" # Email address of system administrator ADMIN_EMAIL = "recipient@example.com"