How to Deploy a Django Application to Heroku with Git CLI

python_tutorials

Introduction

Heroku is a cloud platform that provides hosting services. It supports several programming languages including PHP, Node.js, and Python. It is Platform-as-a-Service (PaaS) which allows you to manage website applications while it takes care of your servers, networks, storage and other cloud components.

In this article, we’ll take a look at how to deploy a Django application to Heroku, using Git.

You can follow the same steps, and deploy the application from GitHub, if it’s hosted there.

Prerequisites

Below is a list of things that need to be done before we getting started with the deployment:

  • Git
  • Heroku Account and CLI
  • Django Application

The Heroku Command Line Interface (CLI) makes it easy to create and manage your Heroku applications directly from the terminal. It’s an essential part of using Heroku.

To install the Heroku CLI (a.k.a. Heroku Toolbelt), please follow

 

 

To finish reading, please visit source site