Skip to content Skip to sidebar Skip to footer

How To Upload And Deploy Django Cookiecutter Project, With Docker, To Heroku?

I am developing an app with django cookiecutter (with docker and heroku setup) and have come so far as to deploying it. This is my first ever project, so no prior experience with d

Solution 1:

It is better to deploy the project to Heroku using git.

$ heroku login
$ heroku create your_custom_app_name
$ git add --a
$ git commit -m "My custom app deployment to heroku"$ git push heroku master

and then once it is deployed.

$ heroku python manage.py migrate

Post a Comment for "How To Upload And Deploy Django Cookiecutter Project, With Docker, To Heroku?"