- bash
- python3
- node.js
To setup the app run the following script:
bash ./setup.shTo run the backend run the following command from the backed folder:
# Mac/Linux
source venv/bin/activate # activate venv
python3 main.py # run server
# Windows
venv/Scripts/activate # activate venv
py main.py # run serverTo run the frontend run the following command from the frontend folder:
npm startTo run the frontend locally in Web mode:
npm run web