rss-generator/config.py

27 lines
1,014 B
Python

# ####YOU MUST FILL THESE OUT FOR THE GENERATOR TO WORK###################
# Title of your website, shows in people's RSS feed
TITLE = ""
# The URL to your website "https://www.yourwebsite.com"
URL = ""
# Description of your website
DESCRIPTION = ""
# Please link back to me :)
GENERATOR = "https://git.domdit.com/dominic/rss-generator"
# Language of your website
LANGUAGE = "en-us"
# if you want your rss feed somewhere else, like a subdir, specify that here
# example: `feeds` would output your rss feed to www.yoursite.com/feeds/index.xml
# if you leave it None it will be www.yourside.com/index.xml (recommended)
XML_BASE_PATH = ""
# Set this to true if you plan on executing this from the actual rss generator directory
# this should be false if rss generator is a subdirectory AND
# you plan on calling the generator from the parent directory like:
# `python3 rss_generator/generator.py`
EXECUTE_FROM_RSS_GENERATOR_DIR = False
# ########################################################################