https://github.com/datitran/streamlit-heroku
https://github.com/datitran/streamlit-heroku
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/datitran/streamlit-heroku
- Owner: datitran
- License: mit
- Created: 2020-06-18T12:15:36.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-08-12T18:36:49.000Z (almost 2 years ago)
- Last Synced: 2024-10-29T08:04:50.735Z (over 1 year ago)
- Language: Shell
- Size: 6.84 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Streamlit + Heroku Hello World Example
1. Login into Heroku:
```
heroku login
```
2. Create Heroku instance:
```
heroku create
```
3. Push the app:
```
git push heroku master
```
4. Run the app:
```
heroku ps:scale web=1
heroku open
```