2012-06-01 18:27:33 +01:00
|
|
|
#!/bin/bash
|
2012-04-30 12:23:03 +01:00
|
|
|
|
|
|
|
# build TiddlyWiki5
|
|
|
|
|
2012-05-05 23:32:04 +01:00
|
|
|
pushd tw5.com > /dev/null
|
|
|
|
|
2012-07-23 08:23:24 +01:00
|
|
|
echo "five.tiddlywiki.com" > ../../jermolene.github.com/CNAME
|
2012-06-21 12:53:56 +01:00
|
|
|
|
2012-05-05 23:32:04 +01:00
|
|
|
node ../core/boot.js \
|
|
|
|
--verbose \
|
2012-09-02 21:00:24 +01:00
|
|
|
--password password \
|
2012-05-05 23:08:00 +01:00
|
|
|
--savetiddler ReadMe ../readme.md text/html \
|
2012-08-25 12:07:39 +01:00
|
|
|
--savetiddler $:/core/templates/tiddlywiki5.template.html ../../jermolene.github.com/index.html text/plain [!is[shadow]]\
|
|
|
|
--savetiddler $:/core/templates/tiddlywiki5.template.html ../../jermolene.github.com/empty.html text/plain [!is[shadow]is[shadow]]\
|
2012-09-02 20:29:47 +01:00
|
|
|
--savetiddler $:/core/templates/tiddlywiki5.encrypted.template.html ../../jermolene.github.com/encrypted.html text/plain [!is[shadow]]\
|
2012-06-21 12:40:07 +01:00
|
|
|
--savetiddler $:/core/templates/static.template.html ../../jermolene.github.com/static.html text/plain \
|
2012-05-05 23:32:04 +01:00
|
|
|
|| exit 1
|
|
|
|
|
|
|
|
popd > /dev/null
|