🧐 add WIKI_DEFUSE config to defuse wiki posting for now
This commit is contained in:
parent
d01775a70f
commit
94ac72c87e
2 changed files with 6 additions and 1 deletions
|
|
@ -46,4 +46,7 @@ def post(files):
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
post()
|
if WIKI_DEFUSE:
|
||||||
|
print("Abort, wiki posting defused."); sys.exit(1)
|
||||||
|
else:
|
||||||
|
post()
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,8 @@ TANDOOR_URL = "https://recipes.entropia.de"
|
||||||
TANDOOR_API_TOKEN = "tda_deadbeef_cafe_affe_1337_feedaffe1337"
|
TANDOOR_API_TOKEN = "tda_deadbeef_cafe_affe_1337_feedaffe1337"
|
||||||
TANDOOR_KEYWORD = "GPN24"
|
TANDOOR_KEYWORD = "GPN24"
|
||||||
|
|
||||||
|
WIKI_DEFUSE = True
|
||||||
|
|
||||||
WIKI_HOST = "entropia.de" # e.g. 'wiki.example.com'
|
WIKI_HOST = "entropia.de" # e.g. 'wiki.example.com'
|
||||||
WIKI_PATH = "/" # e.g. '/w/' for sites using path-based access
|
WIKI_PATH = "/" # e.g. '/w/' for sites using path-based access
|
||||||
WIKI_USERNAME = "Neinomat"
|
WIKI_USERNAME = "Neinomat"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue