The frontend of the game is created in React.js
- Ensure you are in the
/web
directory before running the website - Check that node.js is installed. If not, you can install it here
- Install all required dependencies by running
npm install
- Run
npm start
to start view the website locally. By default, it should be located at http://localhost:3000
- Ensure that you are in the
/backend
directory before running the python backend - Install all dependencies by running
bash initialise.bash
to install all the required dependencies - The Flask App can be started by running
python -m flask --app main --debug run
. By default, it should be located at http://localhost:5000