In a couple of minutes, deploy the simplest flask app that can be run on heroku server.
- Here
app:appis something similar tofrom app import appFirstappis written because of filename and secondappis written because of the variable in the file which is our app to run by gunicorn requirements.txtfile is absolutely necessary for heroku to understand that this is python project
heroku logs -t -a <app_name>to view server logs continuouslyheroku psto see running thread/servicehttps://devcenter.heroku.com/articles/getting-started-with-python#introductionfor more