###Installations###
sudo pip install flask
sudo pip install supervisor
sudo pip install gunicorn
###Running the microservice###
- direct:
python damage.py
- gunicorn:
gunicorn damage:app -w 4 -b 0.0.0.0:8000 --name==damage_service
- supervisor:
supervisorctl start damage_service
olocalhost:9001