Hello all!
cd
into thecorona-vision
folder- run the command
yarn
to install all the required dependencies - run the command
yarn start
to start up the server
- make sure you have
python 3.7
withvenv
installed - cd into the
api
folder - run
python3 -m venv env
to create a virtual environment - run
source env/bin/activate
to activate the virtual environment - run
pip install flask python-dotenv
to make sure you have the right libraries installed - run
flask run
to get the server started
If this isn't working consider running export FLASK_APP=api.py
between step 5) and 6).