My favorites | Sign in
Project Home Downloads Issues Source
Repository:
Checkout   Browse   Changes   Clones    
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/bash

# This script will start the Wave in a Box server.
#

# Make sure the config file exists.
if [ ! -e server.config ]; then
echo "You need to copy server.config.example to server.config and edit it. Or run: 'ant -f server-config.xml' to generate the file automatically."
exit 1
fi

# The version of Wave in a Box, extracted from the build.properties file
WAVEINABOX_VERSION=`sed "s/[\\t ]*=[\\t ]*/=/g" build.properties | grep ^waveinabox.version= | cut -f2 -d=`

. process-script-args.sh

exec java $DEBUG_FLAGS \
-Dorg.eclipse.jetty.util.log.DEBUG=true \
-Djava.security.auth.login.config=jaas.config \
-Dwave.server.config=server.config \
-jar dist/waveinabox-server-$WAVEINABOX_VERSION.jar

Change log

0c84ed15791c by Yuri Zelikov <vega113> on Apr 9, 2011   Diff
Adds ant script to enable automatic
server.config file generation and
configuration.
Go to: 
Sign in to write a code review

Older revisions

72122ec91be0 by Tad Glines <tad.glines> on Nov 29, 2010   Diff
Replace commandline configuration with
parameter file configuration.
253d305467e9 by Tad Glines <tad.glines> on Nov 18, 2010   Diff
Address  issue 153  (Store interfaces
can't fail cleanly) for CertPathStore
1fb109bba6ad by Tad Glines <tad.glines> on Nov 17, 2010   Diff
Address  issue 158  (Account file store
do not work out-of-the-box)
All revisions of this file

File info

Size: 717 bytes, 21 lines
Powered by Google Project Hosting