mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2025-12-27 12:22:04 -08:00
12 lines
218 B
Bash
Executable file
12 lines
218 B
Bash
Executable file
#!/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
|