From 0febd5b6a3aa37a7f181ea258b82fac5df540587 Mon Sep 17 00:00:00 2001 From: Kate Date: Sat, 21 Nov 2020 00:00:17 +0000 Subject: [PATCH] Updated format --- config.py | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/config.py b/config.py index e6ef6c1..6f9c16a 100644 --- a/config.py +++ b/config.py @@ -1,12 +1,16 @@ 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", } - -# 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