OcttKB/Wiki-OcttKB/tiddlers/System/$__OcttKB_Repo_DeployAll.sh.txt

19 lines
504 B
Plaintext
Raw Normal View History

2023-04-13 13:48:38 +00:00
#!/bin/sh
2023-04-14 11:04:56 +00:00
mkdir -p ./public
2023-04-13 13:48:38 +00:00
cd ./public
# Build single-page no-JS wiki
tiddlywiki \
--load ./index.html \
--output ./ \
--rendertiddler $:/core/templates/static.template.css Style.css text/plain \
--rendertiddler $:/core/templates/alltiddlers.template.html Static.html text/plain
# Apply patches to the static HTML
python3 ../PatchStatic.py
2023-04-14 11:04:56 +00:00
# Deploy copies of immediately previous versions
Url="https://kb.octt.eu.org"
wget -O ./-1.html "$Url" || true
wget -O ./-2.html "$Url/-1.html" || true