view gnv-artifacts/bin/run.sh @ 597:cf38b983d1f3

Added the Implementation of the MetaDataService which will deliver FIS and Parameters that match to Mapservices, Region and Layers that were sent to the Service. gnv-artifacts/trunk@653 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Tim Englich <tim.englich@intevation.de>
date Mon, 01 Feb 2010 14:52:05 +0000
parents 874644bf1da8
children f953c9a559d8
line wrap: on
line source
#!/bin/bash

DIR=`dirname $0`/..
CLASSPATH=
for l in `find -name \*.jar -print`; do
   CLASSPATH=$CLASSPATH:$l
done

export CLASSPATH

exec java -Xmx256m \
     -server \
     -Djava.io.tmpdir=/tmp/ \
     -Dartifact.database.dir="$DIR/conf" \
     de.intevation.artifactdatabase.App \
     2>&1 > /dev/null

http://dive4elements.wald.intevation.org