From 3de0585fb7415e1ef8e67b76385cd424592e4d32 Mon Sep 17 00:00:00 2001 From: mjfernez Date: Mon, 14 Mar 2022 16:51:50 -0400 Subject: Restored siteconfig to previous commit 5589754533a I accidentally merged the siteconfig from mjfer.net into the main branch. This restores the original file --- siteconfig.py | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) (limited to 'siteconfig.py') diff --git a/siteconfig.py b/siteconfig.py index 0f4f66c..4a653d4 100644 --- a/siteconfig.py +++ b/siteconfig.py @@ -5,11 +5,10 @@ siteconfig.py - user editable configuration file # this file from config import config - class siteconfig(config): # REQUIRED SETTINGS # - DOMAIN = "mjfer.net" # Your site here! + DOMAIN = "example.net" # Your site here! HOME_TITLE = "WELCOME" LINKS_FILE = ".links" # ".lnx" if you like DESC_FILE = ".description" # ".desc" @@ -29,9 +28,7 @@ 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/ @@ -39,16 +36,16 @@ class siteconfig(config): # RSS Settings rss_channel_config = { - 'TITLE': "RSS Feed for mjfer.net", - 'LINK': "https://mjfer.net/", - 'DESCRIPTION': "", + 'TITLE': "RSS Feed for example.net", + 'LINK': "http://127.0.0.1:5000/", + 'DESCRIPTION': "My example feed", 'LANGUAGE': "en-us", 'PUBDATE': "", 'LASTBUILDDATE': "", 'DOCS': "https://git.mjfer.net/ezcms.git/", 'GENERATOR': "EZCMS", - 'AUTHOR': "mjf@mjfer.net", - 'WEBMASTER': "mjf@mjfer.net", + 'AUTHOR': "editor@example.net", + 'WEBMASTER': "webmaster@example.net", # Max amount of paragraphs to print in each description 'DESCRIPTION_LENGTH': 3, # File extensions to include in RSS updates -- cgit v1.2.3