1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-25 23:03:15 +00:00
TiddlyWiki5/serve.sh

13 lines
231 B
Bash
Raw Normal View History

#!/bin/bash
# serve TiddlyWiki5 over HTTP
2012-11-16 21:27:53 +00:00
pushd editions/tw5.com > /dev/null
2012-11-29 21:30:53 +00:00
node ../../tiddlywiki.js \
--verbose \
--server 8080 $:/core/templates/tiddlywiki5.template.html text/plain text/html \
|| exit 1
popd > /dev/null