Subversion Repositories eFlore/Applications.coel

Rev

Rev 1027 | Rev 1221 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
768 gduche 1
#!/bin/sh
2
APPDIR=`dirname $0`;
1146 jpm 3
APPLI_NOM="Coel"
4
APPLI_DOMAINE="org.tela_botanica.$APPLI_NOM"
5
APPLI_LIEN="$APPLI_DOMAINE"
6
 
7
 
768 gduche 8
# Création d'un lien symbolique si nécessaire.
1146 jpm 9
if [ ! -h $APPDIR/../$APPLI_LIEN ]; then
768 gduche 10
	cd $APPDIR/..;
1146 jpm 11
	ln -s $APPDIR/war $APPLI_LIEN;
768 gduche 12
fi;
1146 jpm 13
java  -Xmx2048M -Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,address=3408,suspend=y -cp "$APPDIR/src:$APPDIR/bin:/opt/gwt-2.0.0/gwt-user.jar:/opt/gwt-2.0.0/gwt-dev.jar:/opt/gxt-2.1.0/gxt.jar" com.google.gwt.dev.DevMode -noserver -port 80 -startupUrl $APPLI_LIEN/$APPLI_NOM.html $APPLI_DOMAINE;