Getting started Heroku with Ubuntu20.04, python

$ sudo snap install heroku –classic
heroku v7.59.1 from Heroku✓ installed
$ heroku login
// ブラウザにアクセス
$ git clone https://github.com/heroku/python-getting-started.git
$ cd python-getting-started
$ heroku create
$ git push heroku main
$ heroku ps:scale web=1
$ heroku open

ソースファイルを見るとdjangoで作られていますね

procfile
web: gunicorn gettingstarted.wsgi

$ heroku ps
=== web (Free): gunicorn gettingstarted.wsgi (1)
web.1: up 2021/11/28 13:00:59 +0000 (~ 10m ago)

requirements.txt

django
gunicorn
django-heroku

in local
$ pip install -r requirements.txt

うむー まとまり過ぎていて細かな手順がわからん