mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2025-12-06 02:30:46 -08:00
As per the existing documentation: http://tiddlywiki.com/#Scripts%20for%20TiddlyWiki%20on%20Node.js
11 lines
268 B
Bash
Executable file
11 lines
268 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# serve TiddlyWiki5 over HTTP with lazily loaded images
|
|
|
|
# Optional parameter is the username for signing edits
|
|
|
|
node ./tiddlywiki.js \
|
|
editions/tw5.com-server \
|
|
--verbose \
|
|
--server 8080 $:/core/save/lazy-images text/plain text/html $1 $2\
|
|
|| exit 1
|