For more information on concepts covered in this lesson, you can check out:
Here are the command-line snippets used in this lesson:
$ heroku addons
$ psql `heroku config:get DATABASE_URL`
$ heroku pg:psql
<app-name>::DATABASE-> \l
<app-name>::DATABASE-> \d
<app-name>::DATABASE-> \q
$ heroku pg
$ heroku run python manage.py migrate
$ vim Procfile
$ git commit -am "Automate remote migrations"
$ git push heroku
web: gunicorn portfolio.wsgi
release: python manage.py migrate
Denilson Noa on Nov. 3, 2022
I cannot find the DATABASE_URL.