These instructions require ruby 1.9.3 (using rvm) and java 1.6
wget -O galaxy https://oss.sonatype.org/content/repositories/releases/com/proofpoint/galaxy/galaxy-cli/0.8/galaxy-cli-0.8-executable.jar
chmod 755 galaxy
./galaxy environment \
provision-local \
--repository https://raw.github.com/mattstep/galaxy-sample-repo/master/ \
mygalaxy \
/tmp/mygalaxy/
./galaxy environment use mygalaxy
./galaxy install sample-server-0.63-distribution.tar.gz @sample-server-config-0.63.zip
./galaxy show
rvm use 1.9.3 #Gotta use ruby 1.9.3, so if you just got it, that's cool
./galaxy start --all
curl -X PUT -H'Content-Type:application/json' \
-d'{"email":"[email protected]", "name":"Matt Stephenson"}' localhost:8080/v1/person/mattstep
curl localhost:8080/v1/person
curl localhost:8080/v1/person/mattstep
curl -X DELETE localhost:8080/v1/person/mattstep
./galaxy stop --all
./galaxy terminate --all