streamlit-webrtc-example
Manual deployment to heroku
Prerequisites
Set up
herokucommand.Add
heroku-buildpack-aptto buildpacks.$ heroku buildpacks:add --index 1 heroku-community/aptSee https://help.heroku.com/IYRYW6VB/how-do-i-install-additional-software-packages-that-my-application-requires and https://github.com/heroku/heroku-buildpack-apt for details.
Deploy
If dependencies have changed, update requirements.txt
Generate
requirements.txt.$ pipreqs . --forceCommit it.
$ git add requirements.txt $ git commit -m "requirements.txt"
Deploy the current branch to Heroku
$ git push heroku <current-branch>:main