ianb / PickyWiki

A Google App Engine HTML-based wiki/CMS

Clone this repository (size: 2.9 MB): HTTPS / SSH
$ hg clone http://bitbucket.org/ianb/pickywiki/

Changed (Δ10 bytes):

raw changeset »

runner (2 lines added, 2 lines removed)

Up to file-list runner:

@@ -12,13 +12,13 @@ if [ -e wikistorage.pid ] ; then
12
12
fi
13
13
14
14
15
dev_appserver ../wikistorage -p 8081 &
15
dev_appserver ../wikistorage -p 8081 "$@" &
16
16
STORAGE_PID="$!"
17
17
echo "Starting wikistorage on 8081 ($STORAGE_PID)"
18
18
echo $STORAGE_PID > wikistorage.pid
19
19
20
20
echo "Starting pickywiki"
21
WIKISTORAGE=http://localhost:8081 dev_appserver .
21
WIKISTORAGE=http://localhost:8081 dev_appserver "$@" .
22
22
# now the server has stopped
23
23
echo "Exited; killing storage $STORAGE_PID"
24
24
kill $STORAGE_PID