source: gs3-extensions/pharos/trunk/setup.bash@ 21293

Last change on this file since 21293 was 21293, checked in by kjdon, 14 years ago

add pharos to GSDL3EXTS

File size: 1.1 KB
RevLine 
[20983]1
2
[21256]3if [ ! -z $PHAROSIS_HOME ] ; then
[20985]4 echo ""
[20983]5 echo "*Your environment is already set up for KMI Pharos Image Similarity Search"
6 return 0
7fi
8
9
10if [ ! -f "setup.bash" ] ; then
11 echo "You must source the script from within the KMI Pharos hom directory"
12 return 1
13fi
14
15# Need to run this script from its own directory instead of whichever directory it may be called from
16thisdir=`pwd`
17
18
19if [ -z $GSDL3SRCHOME ] ; then
20 cd ../..
21 source gs3-setup.sh
22 cd "$thisdir"
23fi
24
[21250]25export PHAROSIS_SRC_HOME=`pwd`
26export PHAROSIS_HOME=$PHAROSIS_SRC_HOME/web
[20983]27export PHAROSOS=$GSDLOS
28
[21250]29export PATH=$PHAROSIS_SRC_HOME/bin/script:$PHAROSIS_SRC_HOME/bin/$PHAROSOS:$PATH
[21293]30export GSDL3EXTS=pharos:$GSDL3EXTS
[21250]31export DERBYDB_HOME=$PHAROSIS_HOME/derbyDB
[20983]32
[20985]33echo ""
[20983]34echo "+Your environment is now set up for KMI Pharos Image Similarity Search"
35
[20985]36echo " - To start DerbyDB: pharos-start-derby.sh"
37echo " - To stop DerbyDB: pharos-stop-derby.sh"
[21242]38echo ""
39echo " - To ingest image: pharos-imageis-add.pl collection file.jpg [doc-id]"
40echo " - To delete image: pharos-imageis-delete.pl collection doc-id"
41echo " - To ingest image: pharos-imageis-query.pl collection doc-id"
[21249]42echo ""
[20983]43
44return 0
45
46
Note: See TracBrowser for help on using the repository browser.