use tandoor json, directly from the api

This commit is contained in:
neingeist 2025-06-06 22:18:53 +02:00
parent f89a9683e0
commit b2ab88b216
80 changed files with 20922 additions and 1996 deletions

View file

@ -1,11 +1,16 @@
WIKI_HOST = 'entropia.de' # e.g. 'wiki.example.com'
WIKI_PATH = '/' # e.g. '/w/' for sites using path-based access
WIKI_USERNAME = 'Neinomat'
WIKI_PASSWORD = 's3cr3t'
TANDOOR_URL = "https://recipes.entropia.de"
TANDOOR_API_TOKEN = "tda_deadbeef_cafe_affe_1337_feedaffe1337"
TANDOOR_KEYWORD = "gpn23"
WIKI_ARTICLE_PREFIX = 'GPN23:'
WIKI_CATEGORY_LIST = ['GPN23', 'Rezepte', 'Gulaschkueche', 'GPN23:Rezepte']
WIKI_HOST = "entropia.de" # e.g. 'wiki.example.com'
WIKI_PATH = "/" # e.g. '/w/' for sites using path-based access
WIKI_USERNAME = "Neinomat"
WIKI_PASSWORD = "s3cr3t"
OUTDIR = 'out'
OUTDIR_MARKDOWN = OUTDIR + '/markdown'
OUTDIR_MEDIAWIKI = OUTDIR + '/mediawiki'
WIKI_ARTICLE_PREFIX = "GPN23:"
WIKI_CATEGORY_LIST = ["GPN23", "Rezepte", "Gulaschkueche", "GPN23:Rezepte"]
OUTDIR = "out"
OUTDIR_JSON = OUTDIR + "/json"
OUTDIR_MARKDOWN = OUTDIR + "/markdown"
OUTDIR_MEDIAWIKI = OUTDIR + "/mediawiki"