Member-only story
Part 2 — Create live interactive dashboards with Python and Heroku
Simple instructions on deploying your Streamlit app on Heroku cloud platform

Introduction
If you want to deploy an interactive dashboard or your portfolio as a web page in a cloud platform, Heroku is a great app to deploy your dashboard. In our previous post, we talk about how to build Interactive dashboards in Python using Streamlit. Here we will deploy our streamlit app in a cloud platform.
Heroku
Heroku is a cloud platform that runs our apps in virtual containers (Dynos)which executes on a runtime environment. These containers support many different languages like Ruby, Scala, Python, Java, etc. It also provides custom buildpacks with which we can deploy apps in any other language.
Setup Heroku
- Create an account in Heroku and then create a new app there.


- We can deploy our…