Parent: [b98b91] (diff)

Child: [baab6b] (diff)

Download this file

start-sandbox.bash    16 lines (11 with data), 253 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
#!/bin/bash
# Start SOLR, as per SOG-sandbox location
pushd /usr/local/solr
java -jar start.jar &
popd
# Start mongo, already on the path
mongod &
. sandbox-env/bin/activate
cd pyforge
paster setup-app development.ini
paster serve development.ini &