diff options
Diffstat (limited to 'siteconfig.py')
-rw-r--r-- | siteconfig.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/siteconfig.py b/siteconfig.py index da21d11..0f4f66c 100644 --- a/siteconfig.py +++ b/siteconfig.py @@ -5,6 +5,7 @@ siteconfig.py - user editable configuration file # this file from config import config + class siteconfig(config): # REQUIRED SETTINGS # @@ -28,7 +29,9 @@ class siteconfig(config): # Set a custom secret key. If not set, it will be generated # Most of the time, you don't need to set this! - SECRET_KEY = config.GENERATED_SECRET_KEY # replace with random number. + SECRET_KEY = ( + config.GENERATED_SECRET_KEY + ) # replace with random number. # Options for Flask Compress # see here https://pypi.org/project/Flask-Compress/ @@ -37,7 +40,7 @@ class siteconfig(config): # RSS Settings rss_channel_config = { 'TITLE': "RSS Feed for mjfer.net", - 'LINK': "mjfer.net", + 'LINK': "https://mjfer.net/", 'DESCRIPTION': "", 'LANGUAGE': "en-us", 'PUBDATE': "", |