Deploying the technical analysis app
In the previous recipe, we have created a full-fledged web app for technical analysis, which we can easily run and use locally. However, that is not always the goal, as we might want to access the app from anywhere or share it with our friends or colleagues. That is why the next step would be to deploy the app to the cloud.
In this recipe, we show how to deploy the app using Streamlit’s (the company) services.
Getting Ready
To deploy the app to Streamlit Cloud, we need to create an account there (https://forms.streamlit.io/community-sign-up). You will also need a GitHub account to host the code of the app.
How to do it…
Execute the following steps to deploy the Streamlit app to the cloud:
- Host the codebase of the app in a public repository on GitHub:
In this step, remember to host the entire codebase of the app, which can naturally be spread out over multiple...