blob: 1123c58ec5b963b3483d429ff6f7eac92783d808 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/sh
. tools/utils.sh
quit_if_no_neo4j_running
CONFIG=res/etc/rhizi-server.conf
EXAMPLE=res/etc/rhizi-server.conf.example
HTPASSWD=res/etc/htpasswd
if [ ! -f $CONFIG ]; then
echo "copying $EXAMPLE to $CONF"
echo "please edit it as you see fit"
cp $EXAMPLE $CONFIG
fi
make # building css relies on Makefile
ant -f build.ant deploy-local
cd deploy-local
python bin/rz_server.py --config-dir etc
|