DEV Community

Cover image for How to deploy a Django app to Heroku
undefinedzack
undefinedzack

Posted on

How to deploy a Django app to Heroku

Introduction


  • Here we'll deploy a To-Do app I made in Django. Here's source-code.

Initial Setup


Installing Heroku CLI


  1. On Linux

    curl https://cli-assets.heroku.com/install.sh | sh
    
  2. On Windows

    Just download and install the Heroku CLI from here.

Verifying installation


To verify our CLI installation

heroku --version
Enter fullscreen mode Exit fullscreen mode

Screenshot_from_2021-01-03_01-18-01.png

Creating a Heroku Account


If you don't have a Heroku account, go ahead and create one.

Diving In!


Log In


We'll have to log in into our Heroku account through CLI.

heroku login
Enter fullscreen mode Exit fullscreen mode
  • It'll open up your default browser, where you'll have to enter your login credentials.
  • After successful login, we can now create and manage our Heroku apps directly from the terminal.

Screenshot_from_2021-01-03_01-22-14.png

Creating a git repository


Why do we need a git repository?

  • Think of it as an update mechanism, with every commit we'll make it'll act as an update to our deployed app.
  • This even helps us in creating restore points, if at any point a new update is crashing our app or has too many annoying bugs, we can hop onto the previous stable commit, and save us the downtime losses.

→ Initialize the git repository, in the directory which contains manage.py

git init
Enter fullscreen mode Exit fullscreen mode

→ Add everything we have in our app, to the git repository.

git add .
Enter fullscreen mode Exit fullscreen mode

→ Make a commit

git commit -m "initial commit"
Enter fullscreen mode Exit fullscreen mode

Creating a Heroku app


heroku create
Enter fullscreen mode Exit fullscreen mode

It'll create a Heroku app with any random name. In my case it's "salty-peak-80429".

Screenshot_from_2021-01-03_01-44-52.png

Linking our git repository with our Heroku app

  • We'll have to link our heroku app to our git repository because we know we'll be making commits to this repository but heroku doesn't know what to watch.
heroku git:remote -a salty-peak-80429
Enter fullscreen mode Exit fullscreen mode

Setting up App server


  • Now Django comes with it's own development server (python mange.py runserver), we have tested our app on development server ample of times.
  • Well when we deploy our app to heroku we can no longer use our development server, we'll need some kind of "app server" which heroku will serve after installing the app on it's server.
  • Moreover before we deploy our app we'll have to make sure that our app still functions in the app server.

Let's install an app server.

pip install gunicorn
Enter fullscreen mode Exit fullscreen mode

Let's test our app server. Locate the wsgi.py file in your main app directory, in my case my main directory is 'tutorial'.

gunicorn tutorial.wsgi
Enter fullscreen mode Exit fullscreen mode

This command doesn't run on windows because gunicorn is incompatible with windows. For more information → here.

It'll start a server on our localhost port 8000.

Screenshot_from_2021-01-03_12-07-50.png

  • Now we'll have to test our app to make sure whether everything's working fine or not. Go ahead and have a look.
  • Now we know our app functions well even on app server.

At this stage we are ready with our app to be deployed, but the thing is

  • Heroku neither knows how to start our app server, nor does it know what will our app require for functioning.
  • In order to tell Heroku these thing's we'll have to create 2 more files :
    • Procfile
    • requirements.txt

Creating Procfile


What's a Procfile?

  • Heroku apps include a Procfile that specifies the commands that are executed by the app on startup. You can use a Procfile to declare a variety of process types, including:
  • For more information about Procfile refer → here

In the main directory which contains 'manage.py', we create Procfile

touch Procfile
Enter fullscreen mode Exit fullscreen mode

Now we'll have to write commands which heroku should execute on app startup, this includes starting up app server.

web: gunicorn tutorial.wsgi
Enter fullscreen mode Exit fullscreen mode

Creating Requirements.txt


This file will contains all the modules we used in our app for proper functioning and yeah you don't have to manually write down every module you used, there's a command for that

pip freeze > requirements.txt
Enter fullscreen mode Exit fullscreen mode

It'll automatically calculate what modules you have used with the version.

Screenshot_from_2021-01-03_12-33-42.png

make sure you're running this command inside your virtual environment, to know how to create one → here.

Finishing up


Let's update our git repository with all the latest changes.

We'll perform

  • git add . and
  • git commit -m "added gunicorn (app server) with requirements.txt and Procfile"

Let's push it

git push heroku master
Enter fullscreen mode Exit fullscreen mode

Screenshot_from_2021-01-03_15-21-15.png

Possible Errors


  • If you haven't set static root in your Django settings, you'll get a DISABLECOLLECTSTATIC error.
  • Django doesn't serve static files in the app server on it's own, that's why we have to define a place where heroku can keep and manage all the static files.
  • Just add STATIC_ROOT in your settings.py file.
STATIC_ROOT = os.path.join(BASE_DIR, 'staticfiles')
Enter fullscreen mode Exit fullscreen mode
ALLOWED_HOSTS = ['*']
Enter fullscreen mode Exit fullscreen mode
  • After making changes, make a commit and try pushing with git push heroku master again.

It's Deployed!


Yup if no error occurs during push command which usually comes if you're doing it for the first time, but hang on, solution's right around the corner waiting for you, you just need to seek it.

You can check out my deployed to-do app at -

To-Do App

Resources


thats all peeps.......

Top comments (1)

Collapse
 
sgbbb profile image
SAGAR_Bora

hey bro thanks for sharing
but im receiving this error
code=H14 desc="No web processes running"
Im struggling with this kindly help me with this