DEV Community

Cover image for Host your Django project on DigitalOcean
Tobi-De
Tobi-De

Posted on • Updated on

Host your Django project on DigitalOcean

In this post we are going to see how you can easily deploy your awesome Django project on a linux server( Virtual Private Server a.k.a vps ). In this tutorial I will be using DigitalOcean, a well know cloud provider that offers you a full control on your server, I also choose DigitalOcean because they have a 1-click app Dokku droplet to get you up and running quickly.

What is Dokku ?

Dokku is an herokuish (give similar environment to heroku) platform that help you deploy quite easily any web based application like a Django app. It is an open source and free PaaS built on Docker. If you already own a vps, installing Dokku is very easy, you can follow the installation guide. This is not the only way to deploy your Django project, you can get away with the basic nginx + gunicorn + postgresql manual setup, but I find this option more easy to setup and manage, I don't like the hassle that comes with managing a linux server, I want to focus on building solutions not managing servers and I think Dokku help with that. If you are Interested by other ways to deploy your django applications, I've linked some useful resources at the end of this guide to help you.

Prerequisites

What you need to be able to follow this guide.

  • A DigitalOcean account, you can create one here (following this link you will get $100 free credits to be able to test the plaform)
  • A droplet (DigitalOcean term to represent a linux server) with Dokku installed on it, fortunately for us, DigitalOcean got us covered, you can create one with Dokku already installed on it here
  • A domain name, you can get one for cheap at namecheap or GoDaddy, use the provider of your choice, I'm using namecheap in this guide.
  • A Django project obviously ๐Ÿ˜†
  • git installed on you computer

Setup your VPS

At this step I presume you have already a droplet (or a vps) with linux installed on it, in my case ubuntu 18.04 LTS. Dokku should already be installed also, if you use the DigitalOcean 1-click Dokku droplet app then you are ready to go. After the server is launched you should wait few minutes for dokku to be ready. Meanwhile follow these steps to get your server ready.

Connect to your server with ssh then search for update

If you are using DigitalOcean, go to your dashboard then click on Droplets, select your droplet, then click on your ipv4 address to copy it and run this command

ssh root@your_ip_address
Enter fullscreen mode Exit fullscreen mode

When you were setting up your droplet, you added a root password, you need it here to run sudo commands.

sudo apt update
sudo apt upgrade
Enter fullscreen mode Exit fullscreen mode
add a limited user
adduser your_user_name
adduser your_user_name sudo
Enter fullscreen mode Exit fullscreen mode

Now you can close your session and connect back with

ssh your_user_name@your_ip_address
Enter fullscreen mode Exit fullscreen mode
setup ssh server on local

If you find it painful to type your ip address each time, you can just add an alias to your system or even better, add this code to your local ~/.ssh/config file.

Host a_server_name
    ForwardAgent yes
    Hostname your_ip_address
    Port 22
    ServerAliveInterval 60
    ServerAliveCountMax 60
Enter fullscreen mode Exit fullscreen mode

Now to connect to your server, you can type

ssh your_user_name@a_server_name
Enter fullscreen mode Exit fullscreen mode
  • create an ssh public key

You will need an ssh key to configure your dokku instance, if you already have one then you can skip this step. If you are on linux, run this command to generate the ssh key. The command will ask for the path to create the ssh key and a passphrase. You can leave the default path for the key directory, and for the passphrase you can leave it blank but you will have to remember it if you set one.

ssh-keygen -b 4096
Enter fullscreen mode Exit fullscreen mode

If you are on windows then you can follow this link to help you create your ssh key.

Setup your domain name

This is very simple, just create an A record with the value of your server ip address, example :

Type : A Record

Host : *.

Value : XXX.XXX.XXX.XX (your ip address)

Configure Dokku

At this step, your Dokku instance should be ready. Visit http://your_ip_address to configure the dokku instance. You should see a Dokku Setup page with a form, the only field you need to worry about is the Public ssh key field. If you generate the key with the command above and leave the path as the default one (it should be something like this ~/.ssh/id_rsa.pub) , then open the id_rsa.pub file with a text editor and copy the content inside the Public ssh Key field, then click finish setup and now your dokku instance is configured.
To test it, connect to your server and type dokku (try with sudo dokku if you have permissions issue), if you see the help menu then you are good to go, if not you can always ask a question in the comment section bellow or check if you miss a step above.

Now that our dokku instance is ready, we can deploy our django project, but before that we need to install some plugins and create the app.

create an App

dokku apps:create your_app_name
Enter fullscreen mode Exit fullscreen mode

Install postgres plugin

This is the command you need to install the postgres plugin to your dokku instance :

sudo dokku plugin:install https://github.com/dokku/dokku-postgres.git
Enter fullscreen mode Exit fullscreen mode

Create a new postgres database instance and link it to your app by running the commands below, linking the database to your app will automatically create a DATABASE_URL environment variable that connect your app to your database instance.

sudo dokku postgres:create your_app_name_db
dokku postgres:link your_app_name_db your_app_name
Enter fullscreen mode Exit fullscreen mode

SideNote : if you need a redis instance, just replace "postgres" by "redis". For any other plugins refer to the offcial dokku documentation plugin page. To setup database backups on an aws S3 bucket check here

Add a domain to your app

dokku domains:add your_app_name your_domain
dokku domains:set your_app_name you_domain
Enter fullscreen mode Exit fullscreen mode

you_domain: something like www.mydomain.com

Set environment variables

You need to set the environment variables before pushing your app to dokku, if not the deployment will fail. To set an environment variable, type:

dokku config:set your_app_name env_name=env_value
Enter fullscreen mode Exit fullscreen mode

Example

dokku config:set my_app PYTHONHASHSEED=random
dokku config:set my_app WEB_CONCURRENCY=4
dokku config:set my_app DJANGO_DEBUG=False
dokku config:set my_app DJANGO_SETTINGS_MODULE=config.settings.production
dokku config:set my_app DJANGO_SECRET_KEY="$(openssl rand -base64 64)"
dokku config:set my_app DJANGO_ADMIN_URL="$(openssl rand -base64 4096 | tr -dc 'A-HJ-NP-Za-km-z2-9' | head -c 32)/"
Enter fullscreen mode Exit fullscreen mode

Deploy your app

Create a Procfile

In the root of your project create a file name Procfile and inside that file copy this code

web: gunicorn wsgi_file_path:application
release: python manage.py migrate 
Enter fullscreen mode Exit fullscreen mode

In my project the wsgi.py file is in the config folder, a folder in the root of my project, you need to find your wsgi file and replace the wsgi_file_path by your path, usually it is in a folder named base on your project name, In my case the first line give this:

web: gunicorn config.wsgi:application
Enter fullscreen mode Exit fullscreen mode
Requirements file

You also need a requirements.txt or Pipfile so Dokku can install all dependencies when deploying. If you are using a virtual environment (you better be using one) just type (in a terminal) from the root of your project :

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

Add the dokku remote repository to your project with git :

git remote add dokku dokku@my_server:your_app_name
Enter fullscreen mode Exit fullscreen mode

You can now deploy your app with :

git push dokku master
Enter fullscreen mode Exit fullscreen mode

when you are done, you can check your deployment setup like this

dokku run your_app_name bash
python manage.py check --deploy
Enter fullscreen mode Exit fullscreen mode

Sidenote : Using dokku clients

Using a dokku client you can create new apps, add plugins easily from your local machine, check the available clients here. When a dokku client is installed and the dokku remote repository is added to your project with git using the above command, you can easily manage your app from your local machine. To set environment variable normally, you should type (assuming you install the dokku-toolbelt) from the root of your project on your local machine :

dt config:set env_name=env_value
Enter fullscreen mode Exit fullscreen mode

But if you have fifteen or more environment variables to set, it will take you decades to set them all. If you want a more efficient way to proceed, you can use this little python script I wrote to set easily and quickly your environment variables on dokku. Read through it and adjust it to your need. The script can be run from the local or the remote machine.

Setup ssl certificate

Install and configure letsencrypt plugin for secure connection through https.

dokku plugin:install https://github.com/dokku/dokku-letsencrypt.git
dokku config:set --no-restart --global DOKKU_LETSENCRYPT_EMAIL=hello@youdomain.com
Enter fullscreen mode Exit fullscreen mode

You can use your personal email if you want, it must be a valid email address.

Add a certificate to your app

dokku letsencrypt your_app_name
Enter fullscreen mode Exit fullscreen mode

Setup a cron task to renew ssl certificate

dokku letsencrypt:cron-job --add
Enter fullscreen mode Exit fullscreen mode

In this tutorial we have seen how you can deploy your django project on a vps using dokku. If you need more deployment options, you can check out the ones below.

Obviously this list is not exhaustive, you can check on google for more options.
Thank you for reading this post, I hope it taught you something, feel free to give me your feedback in the comments section below.
This is the first article I have written so I would love to have feedback so that I can improve myself

Top comments (0)