rss-generator/config.py
2026-04-17 00:45:51 -04:00

21 lines
762 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 = "https://jumbo.subte.cc"
# Description of your website
DESCRIPTION = "mumbling in japanese"
# Please link back to me :)
GENERATOR = "https://www.domdit.com"
# 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 = "feeds"
# ########################################################################