cd api
apt install python3-venv
python -m venv venv
source venv/bin/activate
pip install flask python-dotenv azure-storage-blob
Copy the storage.json.tpl to storage.json and include all the containers
you would like to expose.
yarn install
yarn build
To start the python server:
yarn start-api
Now, go to localhost:5000 to see the production build.
In addition to starting the python server, you need to start also start the development web server:
yarn start
Now go to localhost:3000