expcs/expcs/custom_settings.dist.py

14 lines
No EOL
405 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 = "expcs"
DB_PASS = "secret"
DB_NAME = "expcs"