Original author: Marco Robol - marco.robol@unitn.it - University of Trento - 2022/2023
Original project repository: https://github.com/unitn-ASA/Deliveroo.js
This is a fork of the Deliveroo.js server, specifically the latest version used to test the agent. In order to run the server, execute the following command from the root of the repository to build the necessary components:
npm run buildTo start the server run
npm startNote
If some critical errors appear during the build, or the server does not start, try to build each component manually.
# Build the backend
cd backend
npm run build
cd ..
# Build the frontend
cd frontend
npm run build
cd ..
#Finish the build
npm run build