start-development revision 36c143791815b09f9429633f63e7ed079375c8b3
#!/bin/sh
rake sunspot:solr:start &
bin/sidekiq -q default -q hets -c 1 -v >> log/sidekiq.log &
if [ $1 != "-n" ]
then
rails s &
fi
trap "rake sunspot:solr:stop" INT
wait