Deploying GeoDjango applications on heroku: Easy workthrough

John Owolabi Idogun - Jun 27 '21 - - Dev Community

Motivation

Recently, I was in the position to quickly prototype a location-based application. Since Django is pretty awesome for quick scaffolding with all other requirements still intact, I went straight for it using its extenstion GeoDjango1. The development process was pretty interesting šŸ˜Œ. However, deploying the prototyped application on Heroku was a huge pain šŸ˜¢ since resources were sparse and those available were seemingly outdated.

This guide tends to provide an updated workthrough to overcoming this hurdle.

Assumption

It is assumed that you have a GeoDjango1 application available for deployment. If not, go through 1 or Make a Location-Based Web App With Django and GeoDjango2. Another assumption is that you have chosen to host your application on Heroku and your database is PostgreSQL.

Content

Let's get started. Having configured your application for Heroku deployment3, append the following to your settings.py file.

...
DATABASES['default']['ENGINE'] = 'django.contrib.gis.db.backends.postgis'
Enter fullscreen mode Exit fullscreen mode

If you follow Django Tutorial Part 11: Deploying Django to production3, it should come directly after:

# Heroku: Update database configuration from $DATABASE_URL.
import dj_database_url
db_from_env = dj_database_url.config(conn_max_age=500)
DATABASES['default'].update(db_from_env)
Enter fullscreen mode Exit fullscreen mode

The added code instructs Heroku to use a spatial database extension called postgis. In most cases, failure to include that line results in this error:

AttributeError: 'DatabaseOperations' object has no attribute 'geo_db_type'
Enter fullscreen mode Exit fullscreen mode

Next, we need to add a custom buildpack to our project on heroku. By default, all Python applications are automatically given heroku/python official buildpack. However, since our application needs more than just a python runtime environment ā€” our application needs GDAL, GEOS, and PROJ in addition to a python runtime environment ā€” we must get the additional environment in place for our application to compile. There are various buildpacks out there for this, however Heroku Buildpack Geo worked seemlessly.

NOTE: It should be noted that this buildpack only provides the runtime environments for GIS related projects therefore, it cannot be used alone. You still need a python runtime environment for your applications to run.

Doing this is pretty easy with Heroku since it supports multiple buildpacks.

To add this custom buildpack ā€” after you created your heroku application using heroku create application_name ā€” follow the steps below:

  • Set the official python buildpack:

    heroku buildpacks:set heroku/python
    
  • Insert the custom heroku-geo-buildpack:

    heroku buildpacks:add --index 1 https://github.com/heroku/heroku-geo-buildpack.git
    

    This will insert the heroku-geo-buildpack buildpack at the first position in the order of buildpack execution, and move the other buildpacks that are ahead of it down one position.4

NOTE: Ensure heroku-geo-buildpack buildpack comes first! It installs the basic requirements of a GIS application.

You can confirm it has been included by issuing the following command in your terminal:

heroku buildpacks
Enter fullscreen mode Exit fullscreen mode

You can now happily deploy your application šŸ˜ŠćŠ—ļøšŸŽˆ.

Ran into some issues? The comment session is live šŸ¤—.

Attribution


  1. GeoDjango Tutorial - by Official Django DocsĀ ā†©

  2. Make a Location-Based Web App With Django and GeoDjango - by Ahmed BouchefraĀ ā†©

  3. Django Tutorial Part 11: Deploying Django to production - by MDNĀ ā†©

  4. Using Multiple Buildpacks for an App - by HerokuĀ ā†©

. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .