mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-05 17:46:19 +00:00
bf2fb9cdad
Runs an instance of TW5 on the server and another in the browser
10 lines
198 B
Bash
Executable File
10 lines
198 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# serve TiddlyWiki5 over HTTP
|
|
|
|
node ./tiddlywiki.js \
|
|
editions/clientserver \
|
|
--verbose \
|
|
--server 8080 $:/core/templates/tiddlywiki5.template.html text/plain text/html \
|
|
|| exit 1
|