1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-07 12:34:22 +00:00
TiddlyWiki5/archive/tw5s.sh

16 lines
289 B
Bash
Raw Normal View History

#!/bin/sh
# serve TiddlyWiki5 over HTTP
# make a copy of the content store
mkdir -p tmp/store
rm tmp/store/*.*
cp tiddlywiki5/store/*.* tmp/store
# cook TiddlyWiki5
2012-04-07 11:13:34 +00:00
node tiddlywiki.js \
--recipe $PWD/tiddlywiki5/tiddlywiki5.recipe \
--store tmp/store \
--servewiki 8080 \
|| exit 1