18 lines
449 B
Python
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 = []
|