Heroku is a cloud platform as a service. That means you do not have to worry about infrastructure; you just focus on your application. In addition to what Jonny , there are a few features of Heroku: Instant Deployment with Git push - build of your application is performed by Heroku using your build scripts Plenty of Add-on resources (applications, databases etc.) Processes scaling ...
In my case what i needed was simply making sure the backend server (on Heroku) was running fine by viewing the logs from settings (on Heroku app setting) you can also check the logs via this command line heroku logs --tail
You can do this from the Heroku CLI with the command heroku logs --tail Deploy log: ... The deploying log is ok, but I cant find a possible problem (sorry for the silly question). LOG Detailed: ... My python code: ... My file system dont have the config.toml, int the flher .streamlit/ there is 2 files .stable_random_id and credentials (the last ...
heroku logs -t shows us the live logs. heroku logs -n 1500 for specific number of logs But still I would recommend to use paper trail add-on which have certain benefits and has free basic plan.
For some reason heroku login -i led to some I/O issues on Google Colab for me. I needed to press the return key multiple times after entering the password, and that somehow made the credentials incorrect.
6 I tried to use Robin G 's solution but the depreciation of that buildpack is at the severe level and causing errors with Heroku 22 (which is the current version). The readme of heroku/heroku-buildpack-static is telling us to migrate to heroku/heroku-buildpack-nginx but the migration guide relies on buildpack-static to be run before.