mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-19 08:14:50 +00:00
0cfef8affa
Preparatory to implementing saving changes to the server
18 lines
517 B
Bash
Executable File
18 lines
517 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# build TiddlyWiki5
|
|
|
|
# create a temporary directory if it doesn't already exist
|
|
mkdir -p tmp
|
|
mkdir -p tmp/tw5
|
|
|
|
# cook TiddlyWiki5
|
|
node tiddlywiki.js --recipe $PWD/tiddlywiki5/tiddlywiki5.recipe --store tiddlywiki5/store --savewiki tmp/tw5 --savetiddler ReadMe readme.md || exit 1
|
|
|
|
# cook a static version too
|
|
#mkdir -p tmp/tw5/static
|
|
#node tiddlywiki.js --recipe $PWD/tiddlywiki5/tiddlywiki5.recipe --savehtml tmp/tw5/static
|
|
|
|
# open the result
|
|
#open -a /Applications/Google\ Chrome.app tmp/tw5/index.html
|