smash2/config.py
2020-11-21 00:00:17 +00:00

16 lines
508 B
Python

config = {
# Site Name will be shown in page titles and in navbar
"site-name": "Quotes Database",
# MOTD will be shown as header text on the homepage
"MOTD": "Welcome to the quotes database",
# Show random quote on homepage
"random-quote": True,
# Used to protect against session data tampering
"secret-key": "This should be a complex random value",
# For approving or removing quotes
"administrator-password": "This should be a different complex random value",
}