1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-08 04:54:23 +00:00
TiddlyWiki5/bld.sh

56 lines
1.5 KiB
Bash
Raw Normal View History

2012-06-01 17:27:33 +00:00
#!/bin/bash
# build TiddlyWiki5 for five.tiddlywiki.com
2012-11-16 21:27:53 +00:00
pushd editions/tw5.com > /dev/null
2012-05-05 22:32:04 +00:00
# Set up the build output directory
if [ -z "$TW5_BUILD_OUTPUT" ]; then
TW5_BUILD_OUTPUT=../../../jermolene.github.com
fi
if [ ! -d "$TW5_BUILD_OUTPUT" ]; then
echo 'A valid TW5_BUILD_OUTPUT directory must be set'
exit 1
fi
echo "Using TW5_BUILD_OUTPUT as [$TW5_BUILD_OUTPUT]"
# Make the CNAME file that GitHub Pages requires
echo "five.tiddlywiki.com" > $TW5_BUILD_OUTPUT/CNAME
2013-01-31 10:20:13 +00:00
# First,
# readme.md: the readme file for GitHub
# index.html: the main file, including content
# static.html: the static version of the default tiddlers
2012-06-21 11:53:56 +00:00
2012-11-29 21:30:53 +00:00
node ../../tiddlywiki.js \
2012-05-05 22:32:04 +00:00
--verbose \
2012-11-16 21:27:53 +00:00
--savetiddler ReadMe ../../readme.md text/html \
--savetiddler $:/core/templates/tiddlywiki5.template.html $TW5_BUILD_OUTPUT/index.html text/plain \
--savetiddler $:/core/templates/static.template.html $TW5_BUILD_OUTPUT/static.html text/plain \
2012-05-05 22:32:04 +00:00
|| exit 1
2013-01-31 10:20:13 +00:00
# Second, encrypted.html: a version of the main file encrypted with the password "password"
node ../../tiddlywiki.js \
--verbose \
--password password \
--savetiddler $:/core/templates/tiddlywiki5.template.html $TW5_BUILD_OUTPUT/encrypted.html text/plain \
|| exit 1
2012-05-05 22:32:04 +00:00
popd > /dev/null
2013-01-31 10:20:13 +00:00
# Third, empty.html: empty wiki for reuse
pushd editions/empty > /dev/null
2012-11-29 21:30:53 +00:00
node ../../tiddlywiki.js \
--verbose \
--savetiddler $:/core/templates/tiddlywiki5.template.html $TW5_BUILD_OUTPUT/empty.html text/plain \
|| exit 1
popd > /dev/null