The Stopless Intersection Management Program is an autonomous car scheduler meant to model and improve car throughput using the standard traffic-light intersection as a baseline for performance.
1. cd ~/simp/frontend
2. npm install
3. npm run dev
4. visit localhost@3000
You must have npm (Node Package Manager) or alternatives (yarn, nvm, etc) for installing package dependencies. Ideally the latest version of Node.js, React.js, and python3. Operating System must have python3 as a terminal command
Alternatively: If do not wish to change python to work through python3, you can simply edit the server.js config and change the line.
python = spawn('python3', ['-u scheduler.py'] => python = spawn('python', ['-u scheduler.py']
See contributing.md
.