i'm kind of new to Heroku, but got a question in relation to dynos. My situation is as follows. I'm running on main application in django that runs the following dyno command "web gunicorn DJANGO_WEBPAGE.wsgi --log-file - ", and inside my main project there is a streamlit app that runs the following command "streamlit run geo_dashboard.py", but it seems i can't run both commands on the same dyno. 1.- Is there a way to accomplish this? 2.- Do they need to be on separate apps? 3.- In case of limitations do to being a free user, does the hobby plan covers it?
I've tried running my procfile this way
web: gunicorn DJANGO_WEBPAGE.wsgi --log-file - && web: sh setup.sh && streamlit run geo_dashboard.py
Even though i get no errors, only the streamlit app appears leaving the django app shutdown.