So i have a Streamlit Python app I wanted to deploy on heroku, the doployment was successful, but when I open the app it gives me an application error
for starters, here is my requirement file :
wordcloud==1.8.1
xlrd<2.0
pandas<1.2.3
numpy<1.20.1
streamlit==0.79.0
Pillow==8.2.0
and here is my Procfile file :
web: sh setup.sh && streamlit run suite.py
and i did the setup file as well , i followed every step on this video : https://youtu.be/nJHrSvYxzjE when i did this command :
heroku logs --tail
i got this :
2021-04-02T19:26:55.000000+00:00 app[api]: Build started by user
2021-04-02T19:27:52.901079+00:00 app[api]: Release v5 created by user
2021-04-02T19:27:52.901079+00:00 app[api]: Deploy 7ca73902 by user
2021-04-02T19:28:18.000000+00:00 app[api]: Build succeeded
2021-04-02T19:28:35.572192+00:00 heroku[router]: at=error code=H14 desc="No web processes running" method=GET path="/" host=wordcloudpython.herokuapp.com r
equest_id=28e8c410-53ba-42a2-86ed-dfac2162d53f fwd="160.179.71.151" dyno= connect= service= status=503 bytes= protocol=https
This is my first time using heroku and I'm fairly new to this.