mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2026-01-13 12:50:54 -08:00
15 lines
289 B
Bash
Executable file
15 lines
289 B
Bash
Executable file
#!/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
|
|
node tiddlywiki.js \
|
|
--recipe $PWD/tiddlywiki5/tiddlywiki5.recipe \
|
|
--store tmp/store \
|
|
--servewiki 8080 \
|
|
|| exit 1
|