This repo aims to save images captured to a service on render.com.
git clone
python3 -m venv ./venv-server
source venv-server/bin/activate
pip install -r requirements.txt
Copy the .env-example-local file to .env and fill in the values.
cp .env-example-local .env
Then use your editor to edit the .env file.
gunicorn main:app -b 127.0.0.1:5000 --reload
gunicorn main:app -b 0.0.0.0:8080