1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-12-25 01:20:30 +00:00

Added a batch file for testing serving over HTTP

This commit is contained in:
Jeremy Ruston 2012-06-01 18:27:20 +01:00
parent 1b5beefb8d
commit 44e2b246ba

12
serve.sh Executable file
View File

@ -0,0 +1,12 @@
#!/bin/bash
# serve TiddlyWiki5 over HTTP
pushd tw5.com > /dev/null
node ../core/boot.js \
--verbose \
--server 8080 $:/core/templates/tiddlywiki5.template.html text/plain text/html \
|| exit 1
popd > /dev/null