A cross-platform app for visualizing TQDM progress bars in real-time.
We are using Heroku to deploy the app at https://tqdm.me.
The runtime.txt
file specifies the Python version to use.
Our Procfile
specifies to run python src/server.py
to start the server.
Register the app on Heroku.
heroku git:remote -a tqdm-me
Ensure that the Python buildpack is used.
heroku buildpacks:add heroku/python
Ensure your requirements.txt
file is up-to-date.
conda env update --file environment.yml --prune
pip freeze > requirements.txt
After committing your changes, push to Heroku.
git push heroku main
Otherwise merge into the production
branch to automatically deploy to Heroku.