aboutsummaryrefslogtreecommitdiffstats
path: root/siteconfig.py
diff options
context:
space:
mode:
authormjfernez <mjf@mjfer.net>2022-03-14 16:51:50 -0400
committermjfernez <mjf@mjfer.net>2022-03-14 16:51:50 -0400
commit3de0585fb7415e1ef8e67b76385cd424592e4d32 (patch)
tree8bf046d3588ff208e5a20de310c4f7147f984bf4 /siteconfig.py
parent94f71d6f8fc7301dfd470ccf2fee27e078321a78 (diff)
downloadezcms-3de0585fb7415e1ef8e67b76385cd424592e4d32.tar.gz
Restored siteconfig to previous commit 5589754533a
I accidentally merged the siteconfig from mjfer.net into the main branch. This restores the original file
Diffstat (limited to 'siteconfig.py')
-rw-r--r--siteconfig.py17
1 files changed, 7 insertions, 10 deletions
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