#!/bin/sh
# Start the Simulator System with the full incident script
cd ../webapps
echo "Starting webserver in folder" `pwd`
python -m CGIHTTPServer 8080 &
sleep 1
cd ..
java -jar deploy/CADserver.jar &
sleep 10
java -jar deploy/SimManager.jar full_script_2016.xml &
# Manual step for now, until it's integrated into Sim Mgr
cp scripts/full_script_2016.xml webapps/dynamicdata/incident_script.xml
# Start a browser and run the web applications
# firefox localhost:8080 &

