smash2/config.py
2020-11-20 23:06:07 +00:00

12 lines
511 B
Python

config = {
"site-name": "Quotes Database",
"MOTD": "Welcome to the quotes database",
"random-quote": True,
"secret-key": "This should be a complex random value",
"administrator-password": "This should be a different complex random value",
}
# site-name will be shown in page titles and in the navbar
# MOTD will be shown on the homepage above a random quote
# random-quote will set whether a random quote is shown on the homepage
# secret-key is used to protect session data from tampering