expephalon-demomodule/expephalon/custom_settings.dist.py
Klaus-Uwe Mitterer f54d19a700 Move sensitive information from settings.py to custom_settings.py, include distributable sample
Add .gitignore
Add pip requirements file
Change default password hasher to Argon
2020-03-23 15:14:44 +01:00

18 lines
449 B
Python

# 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 = "changeme"
# 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 = "expephalon"
DB_PASS = "secret"
DB_NAME = "expephalon"
DEBUG = True
ALLOWED_HOSTS = []