Visit http://search.notincluded.org in your web-browser.
- Install
npm
,NodeJS
, and frontend requirements:
source setup/install_prereqs.sh
- Start the backend and frontend:
source setup/run_server.sh
- In a new terminal, test the back-end is running:
curl http://127.0.0.1:5001/prefix/fl/7
curl http://127.0.0.1:5001/details/hungry
- Now that both services are running, navigate in web-browser to http://localhost:3000
- Once you've tested the site, you can kill the webserver and backend by running:
kill -9 $(lsof -ti:3000)
kill -9 $(lsof -ti:5001)