root/trunk/mapfishsample/configs/defaults

Revision 1110, 0.8 kB (checked in by elemoine, 4 months ago)

various changes to some deploy config files, non-functional change

Line 
1 # Put here the default options
2
3 # Override this to true in your configuration file to enable debugging
4 export DEBUG="false"
5
6 # Override this if you have a different python version
7 export PYTHON_SITE=$PYTHON_HOME/lib/python2.4/site-packages
8
9 # You should override this with the version to appear in URL's
10 export VERSION="trunk"
11
12 # Set to empty string to enable WSGI
13 export HAS_WSGI="#"
14
15 # Database information
16 export DB_USER="www-data"
17 export DB_PASSWORD="www-data"
18 export DB_HOST="localhost"
19 export DB_VERSION="trunk"
20
21 export DB_URL=postgres://${DB_USER}:${DB_PASSWORD}@${DB_HOST}/${DB_VERSION}_mapfishsample
22
23 export MVN=mvn
24
25 function post_fetch_project() {
26     PRINT_SRC=$PROJECT_MAPFISH_DIR/server/java/print/
27     (cd $PRINT_SRC; $MVN clean install)
28     cp $PRINT_SRC/print-standalone/target/print-standalone.jar $PROJECT_DIR/print/
29 }
Note: See TracBrowser for help on using the browser.