- Recommend working out of the workspace for maximum compatibility with Visual Studio extensions.
- Install Visual Studio Code Python Extension
- Open terminal to the
backendworkspace - Create a virtual env within the backend folder
python -m venv .venv - You will need to restart the terminal to start using the virtual python environment normally.
- Install requirements doing
pip install -r requirements.txt
- Make sure you have node installed
brew install node - In the frontend folder run
npm install
- From root open a terminal for the
backendworkspace - Run
python main.pyor Click Debug button with main.py open.
- From terminal to frontend folder
- Run
npm start