all repos — eyes-like-fire @ 992ebf9e70201b2f3066445089583d04ea3e04b6

Source code for the main eyes-like-fire website

Added deployment
Juniper Beatitudes [email protected]
Fri, 04 Jul 2025 16:17:03 -0700
commit

992ebf9e70201b2f3066445089583d04ea3e04b6

parent

3198581a44cd8959aac15b667e5130bbb304825a

1 files changed, 6 insertions(+), 3 deletions(-)

jump to
M MakefileMakefile

@@ -1,9 +1,12 @@

PANDOC := pandoc build: src/*.md - pandoc -s -t chunkedhtml -o build/pages.zip $< --shift-heading-level-by=-1 --toc=true + rm -rf build/* + pandoc -N -s -t chunkedhtml -o build/pages.zip $< --shift-heading-level-by=-1 --toc=true unzip build/pages.zip -d build rm build/pages.zip -clean: - rm -rf build/* +deploy: build + ssh site@website "rm -rf ~/build" + scp -r build site@website:~ +