run_AToMPM_local.sh 224 B

12345678910111213141516171819
  1. #!/bin/bash
  2. # Author: Yentl Van Tendeloo
  3. set -e
  4. node httpwsd.js &
  5. serverpid=$!
  6. sleep 3
  7. python2 mt/main.py&
  8. mtpid=$!
  9. sleep 1
  10. google-chrome-stable http://localhost:8124/atompm
  11. kill $serverpid
  12. kill $mtpid
  13. echo "All done!"