An open API service indexing awesome lists of open source software.

https://github.com/datitran/streamlit-heroku


https://github.com/datitran/streamlit-heroku

Last synced: 5 months ago
JSON representation

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
```