1If u get "No web processes running" Error, Make Sure:
2 1. your main file is 'app.py' and your main func is app [ app = Flask(__name__), app.run() ]
3 2. you added gunicorn==20.1.0 to your requirements.txt file
4 3. you have Procfile with the following line 'web: gunicorn app:app'