mirror of
https://github.com/TiddlyWiki/TiddlyWiki5.git
synced 2026-05-01 01:48:27 +00:00
13 lines
230 B
Bash
Executable File
13 lines
230 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# serve TiddlyWiki5 over HTTP
|
|
|
|
pushd editions/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
|