The author selected the Diversity in Tech Fund to receive a donation as part of the Write for DOnations program.
Django is a powerful web framework that allows you to deploy your Python applications or websites. Django includes many features such as authentication, a custom database ORM (Object-Relational Mapper), and an extensible plugin architecture. Django simplifies the complexities of web development, allowing you to focus on writing code.
In this tutorial, you’ll configure a Django project and deploy it to DigitalOcean’s App Platform using GitHub.
To complete this tutorial, you’ll need:
Before you get started, you need to set up our Python developer environment. You will install your Python requirements within a virtual environment for easier management.
First, create a directory in your home directory that you can use to store all of your virtual environments:
- mkdir ~/.venvs
Now create your virtual environment using Python:
python3 -m venv ~/.venvs/django
This will create a directory called django
within your .venvs
directory. Inside, it will install a local version of Python and a local version of pip
. You can use this to install and configure an isolated Python environment for your project.
Before you install your project’s Python requirements, you need to activate the virtual environment. You can do that by typing:
- source ~.venvs/django/bin/activate
Your prompt should change to indicate that you are now operating within a Python virtual environment. It will look something like this: (django)user@host:~$
.
With your virtual environment active, install Django, Gunicorn, dj-database-url, and the psycopg2
PostgreSQL adaptor with the local instance of pip
:
- pip install django gunicorn psycopg2-binary dj-database-url
Note: When the virtual environment is activated (when your prompt has (django)
preceding it), use pip
instead of pip3
, even if you are using Python 3. The virtual environment’s copy of the tool is always named pip
, regardless of the Python version.
These packages do the following:
django
- Installs the Django framework and librariesgunicorn
- A tool for deploying Django with a WSGIdj-database-url
- A Django tool for parsing a database URLpsycopg2
- A PostgreSQL adapter that allows Django to connect to a PostgreSQL databaseNow that you have these packages installed, you will need to save these requirements and their dependencies so App Platform can install them later. You can do this using pip
and saving the information to a requirements.txt file:
- pip freeze > requirements.txt
You should now have all of the software needed to start a Django project. You are almost ready to deploy.
Create your project using the django-admin tool that was installed when you installed Django:
- django-admin startproject django_app
At this point, your current directory (django_app
in your case) will have the following content:
manage.py
: A Django project management script.django_app/
: The Django project package. This should contain the __init__.py
, settings.py
, urls.py
, asgi.py
, and wsgi.py
files.This directory will be the root directory of your project and will be what we upload to GitHub. Navigate into this directory with the command:
- cd django_app
Let’s adjust some settings before deployment.
Now that you’ve created a Django project, you’ll need to modify the settings to ensure it will run properly in App Platform. Open the settings file in your text editor:
- nano django_app/settings.py
Let’s examine our configuration one step at a time.
First, you need to add the os
import statement to be able to read environment variables:
import os
Next, you need to modify the SECRET_KEY
directive. This is set by Django on the initial project creation and will have a randomly generated default value. It is unsafe to keep this hardcoded value in the code once it’s pushed to GitHub, so you should either read this from an environment variable or generate it when the application is started. To do this, add the following import statement at the top of the settings file:
from django.core.management.utils import get_random_secret_key
Now modify the SECRET_KEY
directive to read in the value from the environment variable DJANGO_SECRET_KEY
or generate the key if it does not find said environment variable:
SECRET_KEY = os.getenv("DJANGO_SECRET_KEY", get_random_secret_key())
Warning: If you don’t set this environment variable, then every time the app is re-deployed, this key will change. This can have adverse effects on cookies and will require users to log in again every time this key changes. You can generate a key using an online password generator.
Now locate the ALLOWED_HOSTS
directive. This defines a list of the server’s addresses or domain names that may be used to connect to the Django instance. Any incoming request with a Host header that is not in this list will raise an exception. Django requires that you set this to prevent a certain class of security vulnerability.
In the square brackets, list the IP addresses or domain names that are associated with your Django server. Each item should be listed in quotations with entries separated by a comma. If you wish requests for an entire domain and any subdomains, prepend a period to the beginning of the entry.
App Platform supplies you with a custom URL as a default and then allows you to set a custom domain after you have deployed the application. Since you won’t know this custom URL until you have deployed the application, you should attempt to read the ALLOWED_HOSTS
from an environment variable, so App Platform can inject this into your app when it launches.
We’ll cover this process more in-depth in a later section. But for now, modify your ALLOWED_HOSTS
directive to attempt to read the hosts from an environment variable. The environment variable can be set to either a single host or a comma-delimited list:
ALLOWED_HOSTS = os.getenv("DJANGO_ALLOWED_HOSTS", "127.0.0.1,localhost").split(",")
Next you should modify the DEBUG
directive so that you can toggle this by setting an environment variable:
DEBUG = os.getenv("DEBUG", "False") == "True"
Here you used the getenv
method to check for an environment variable named DEBUG
. If this variable isn’t found, we should default to False
for safety. Since environment variables will be read in as strings from App Platform, be sure to make a comparison to ensure that your variable is evaluated correctly.
Now create a new directive named DEVELOPMENT_MODE
that will also be set as an environment variable. This is a helper variable that you will use to determine when to connect to your Postgres database and when to connect to a local SQLite database for testing. You’ll use this variable later when setting up the database connection:
DEVELOPMENT_MODE = os.getenv("DEVELOPMENT_MODE", "False") == "True"
Next, find the section that configures database access. It will start with DATABASES
. The configuration in the file is for a SQLite database. App Platform allows you to create a PostgreSQL database for our project, so you need to adjust the settings to be able to connect to it.
Warning: If you don’t change these settings and continue with the SQLite DB, your database will be erased after every new deployment. App Platform doesn’t maintain the disk when re-deploying applications, and your data will be lost.
Change the settings with your PostgreSQL database information. You’ll read in the database connection information and credentials from an environment variable, DATABASE_URL
, that will be provided by App Platform. Use the psycopg2
adaptor we installed with pip
to have Django access a PostgreSQL database. You’ll use the dj-database-url
package that was installed to get all of the necessary information from the database connection URL.
To facilitate with development of your application locally, you’ll also use an if
statement here to determine if DEVELOPMENT_MODE
is set to True
and which database should be accessed. By default, this will be set to False
, and it will attempt to connect to a PostgreSQL database. You also don’t want Django attempting to make a database connection to the PostgreSQL database when attempting to collect the static files, so you’ll write an if
statement to examine the command that was executed and not connect to a database if you determine that the command given was collectstatic
. App Platform will automatically collect static files when the app is deployed.
First, install the sys
library so you can determine the command that was passed to manage.py
and the dj_database_url
library to be able to parse the URL passed in:
. . .
import os
import sys
import dj_database_url
Next remove the current DATABASE
directive block and replace it with this:
if DEVELOPMENT_MODE is True:
DATABASES = {
"default": {
"ENGINE": "django.db.backends.sqlite3",
"NAME": os.path.join(BASE_DIR, "db.sqlite3"),
}
}
elif len(sys.argv) > 0 and sys.argv[1] != 'collectstatic':
if os.getenv("DATABASE_URL", None) is None:
raise Exception("DATABASE_URL environment variable not defined")
DATABASES = {
"default": dj_database_url.parse(os.environ.get("DATABASE_URL")),
}
Next, move down to the bottom of the file and add a setting indicating where the static files should be placed. When your Django app is deployed to App Platform, python manage.py collectstatic
will be run automatically. Set the route to match the STATIC_URL
directive in the settings file:
. . .
STATIC_URL = "/static/"
STATIC_ROOT = os.path.join(BASE_DIR, "staticfiles")
Note: If you plan on storing static files in other locations outside of your individual Django-app static files, you will need to add an additional directive to your settings file. This directive will specify where to find these files. Be aware that these directories cannot share the same name as your STATIC_ROOT
. If you do not have extra static files do not include this setting.:
. . .
STATIC_URL = "/static/"
STATIC_ROOT = os.path.join(BASE_DIR, "staticfiles")
STATICFILES_DIRS = (os.path.join(BASE_DIR, "static"),)
settings.py
FileYour completed file will look like this:
from django.core.management.utils import get_random_secret_key
from pathlib import Path
import os
import sys
import dj_database_url
# Build paths inside the project like this: BASE_DIR / 'subdir'.
BASE_DIR = Path(__file__).resolve().parent.parent
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/3.1/howto/deployment/checklist/
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = os.getenv("DJANGO_SECRET_KEY", get_random_secret_key())
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = os.getenv("DEBUG", "False") == "True"
ALLOWED_HOSTS = os.getenv("DJANGO_ALLOWED_HOSTS", "127.0.0.1,localhost").split(",")
# Application definition
INSTALLED_APPS = [
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
]
MIDDLEWARE = [
'django.middleware.security.SecurityMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
]
ROOT_URLCONF = 'django_app.urls'
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
],
},
},
]
WSGI_APPLICATION = 'django_app.wsgi.application'
# Database
# https://docs.djangoproject.com/en/3.1/ref/settings/#databases
DEVELOPMENT_MODE = os.getenv("DEVELOPMENT_MODE", "False") == "True"
if DEVELOPMENT_MODE is True:
DATABASES = {
"default": {
"ENGINE": "django.db.backends.sqlite3",
"NAME": os.path.join(BASE_DIR, "db.sqlite3"),
}
}
elif len(sys.argv) > 0 and sys.argv[1] != 'collectstatic':
if os.getenv("DATABASE_URL", None) is None:
raise Exception("DATABASE_URL environment variable not defined")
DATABASES = {
"default": dj_database_url.parse(os.environ.get("DATABASE_URL")),
}
# Password validation
# https://docs.djangoproject.com/en/3.1/ref/settings/#auth-password-validators
AUTH_PASSWORD_VALIDATORS = [
{
'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
},
]
# Internationalization
# https://docs.djangoproject.com/en/3.1/topics/i18n/
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'UTC'
USE_I18N = True
USE_L10N = True
USE_TZ = True
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/3.1/howto/static-files/
STATIC_URL = "/static/"
STATIC_ROOT = os.path.join(BASE_DIR, "staticfiles")
# Uncomment if you have extra static files and a directory in your GitHub repo.
# If you don't have this directory and have this uncommented your build will fail
# STATICFILES_DIRS = (os.path.join(BASE_DIR, "static"),)
Note: There are values within settings.py
that are specific to your project (such as WSGI_APPLICATION
and ROOT_URLCONF
) that are generated when you first setup your app. If you named your app something other than django_app
and are going to copy and paste this code directly be sure to modify these settings to match your project. They will have been set correctly in the settings.py
that was generated for you.
Save and close settings.py
.
You’ve now finished configuring your Django app to run on App Platform. Next, you’ll push the app to GitHub and deploy it to App Platform.
DigitalOcean App Platform deploys your code from GitHub repositories, so the first thing you’ll need to do is get your site in a git
repository and then push that repository to GitHub.
First, initialize your Django project as a git
repository:
- git init
When you work on your Django app locally, certain files get added that are unnecessary for deployment. Let’s exclude that directory by adding it to Git’s ignore list. Create a new file called .gitignore
:
- nano .gitignore
Now add the following code to the file:
db.sqlite3
*.pyc
Save and close the file.
Now execute the following command to add files to your repository:
- git add django_app/ manage.py requirements.txt static/
Make your initial commit:
- git commit -m "Initial Django App"
Your files will commit:
Output[master (root-commit) eda5d36] Initial Django App
8 files changed, 238 insertions(+)
create mode 100644 django_app/__init__.py
create mode 100644 django_app/asgi.py
create mode 100644 django_app/settings.py
create mode 100644 django_app/urls.py
create mode 100644 django_app/wsgi.py
create mode 100644 manage.py
create mode 100644 requirements.txt
create mode 100644 static/README.md
Open your browser and navigate to GitHub, log in with your profile, and create a new repository called django-app
. Create an empty repository without a README
or license file.
Once you’ve created the repository, return to the command line to push your local files to GitHub.
First, add GitHub as a remote repository:
- git remote add origin https://github.com/your_username/django-app
Next, rename the default branch main
, to match what GitHub expects:
- git branch -M main
Finally, push your main
branch to GitHub’s main
branch:
- git push -u origin main
Your files will transfer:
OutputEnumerating objects: 12, done.
Counting objects: 100% (12/12), done.
Delta compression using up to 8 threads
Compressing objects: 100% (9/9), done.
Writing objects: 100% (12/12), 3.98 KiB | 150.00 KiB/s, done.
Total 12 (delta 1), reused 0 (delta 0)
remote: Resolving deltas: 100% (1/1), done.
To github.com:yourUsername/django-app.git
* [new branch] main -> main
Branch 'main' set up to track remote branch 'main' from 'origin'.
Enter your GitHub credentials when prompted to push your code.
Your code is now on GitHub and accessible through a web browser. Now you will deploy your site to DigitalOcean’s App Platform.
Once the code is pushed, visit https://cloud.digitalocean.com/apps and click Launch Your App. You’ll be prompted to connect your GitHub account:
Connect your account and allow DigitalOcean to access your repositories. You can choose to let DigitalOcean have access to all of your repositories or just to the ones you wish to deploy.
Click Install and Authorize. You’ll be returned to your DigitalOcean dashboard to continue creating your app.
Once your GitHub account is connected, select the your_account/django-app
repository and click Next.
Next, provide your app’s name, choose a region, and ensure the main
branch is selected. Then ensure that Autodeploy code changes is checked. Click Next to continue.
DigitalOcean will detect that your project is a Python app and will automatically populate a partial run command.
Click the Edit link next to the Build and Run commands to complete the build command. Your completed build command needs to reference your project’s WSGI file. In this example, this is at django_app.wsgi
. Your completed run command should be gunicorn --worker-tmp-dir /dev/shm django_app.wsgi
.
Next, you need to define the environment variables you declared in your project’s settings. App Platform has a concept of App-Wide Variables
, which are environment variables that are provided by App Platform, such as APP_URL
and APP_DOMAIN
. The platform also maintains Component-Specific Variables
, which are variables that are exported from your components. These will be useful for determining your APP_DOMAIN
beforehand so you can properly set DJANGO_ALLOWED_HOSTS
. You will also use these variables to copy configuration settings from your database.
To read more about these different variables, consult the App Platform Environment Variable Documetation
For your Django app to function, you need to set the following environment variables like so:
DJANGO_ALLOWED_HOSTS
-> ${APP_DOMAIN}
DATABASE_URL
-> ${<NAME_OF_YOUR_DATABASE>.DATABASE_URL}
${db.DATABASE_URL}
DEBUG
-> True
True
for now to verify your app is functioning and set to False
when it’s time for this app to be in productionDJANGO_SECRET_KEY
-> <A RANDOM SECRET KEY>
To set up your database, click the Add a Database button. You will be presented with the option of selecting a small development database or integrating with a managed database elsewhere. For this deployment, select the development database and ensure that the name of the database is db
. Once you’ve verified this, click the Add Database button.
Click Next, and you’ll be directed to the Finalize and Launch screen where you’ll choose your plan. Be sure to select the appropriate plan to fit your needs, whether in Basic App or Professional App and then click Launch App at the bottom. Your app will build and deploy:
Once the build process completes, the interface will show you a healthy site. Now you need to access your app’s console through the Console tab and perform the Django first launch tasks by running the following commands:
python manage.py migrate
- This will perform your initial database migrations.python manage.py createsuperuser
- This will prompt you for some information to create an administrative userOnce you are done with that, click on the link to your app provided by App Platform:
This link should take you to the standard initial Django page.
And now you have a Django app deployed to App Platform. Any changes that you make and push to GitHub will be automatically deployed.
Now that you’ve deployed your app, you may notice that your static files aren’t being loaded if you have DEBUG
set to False
. Django doesn’t serve static files in production and instead wants you to deploy them using a web server or CDN. Luckily, App Platform can do just that. App Platform provides free static asset serving if you are running a service alongside it, as you are doing with your app. So you’re going to deploy your same Django app but as a static site this time.
Once your app is deployed, add a static site component from the Components tab in your app.
Select the same GitHub repository as your deployed Django service. Click Next to continue.
Next, provide your app’s name and ensure the main
branch is selected. Click Next to continue.
Your component will be detected as a Service, so you’ll want to change the type to Static Site. Essentially we’ll have Django gather our static files and serve them. Set the route to what you set your STATIC_URL
directive in your settings file. We set our directive to /static/
so set the route to /static
. Finally, your static files will be collected into Output Directory in your app to match your STATIC_ROOT
setting in settings.py
. Yours is set to staticfiles
, so set Output Directory to that.
Click Next, and you’ll be directed to the Finalize and Launch screen. When static files are paired with a service, it is free, so you won’t see any change in your bill. Click Launch App and deploy your static files. Now, if you have Debug set to False, you’ll see your static files properly displayed.
In this tutorial, you set up a Django project and deployed it using DigitalOcean’s App Platform. Any changes you commit and push to your repository will be re-deployed, so you can now expand your application. You can find the example code for this tutorial in the DigitalOcean Sample Images Repository
The example in this tutorial is a minimal Django project. Your app might have more applications and features, but the deployment process will be the same.
Thanks for learning with the DigitalOcean Community. Check out our offerings for compute, storage, networking, and managed databases.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
I am following this tutorial to set up my Django app on the DO App platform.
Everything is working as expected other than media files. I tried different configurations and settings at my settings.py file but I am unsuccessful.
Do I need to add a media static site service for this? Or can I use the same static site? Any help will be appreciated.
Hi there!, I’m following these docs in 2024 the UI has changed a little bit and I’m having 2 issues
Regarding
if len(sys.argv) > 0 and sys.argv[1] != 'collectstatic'
:len(sys.argv) > 0
should be corrected aslen(sys.argv) > 1
will always be true as./manage.py
will always be the first entry.The way it is right now will not allow to execute
./manage.py
without arguments.This is a helpful article, cheers to the author! It would be good to update the screenshots to the current version though.
Why do I get that I can’t launch a Django app on the “launch app”? It only accepts these: https://www.digitalocean.com/docs/app-platform/languages-frameworks/ How is that there’s a Django tutorial? Thanks!
Thank you so much for this, it super helpful. What would change if I use nginx
Why I keep error like above? I did the setting exactly as you did. It keeps telling me that there is no
static
folder but after I make it. it Still show that error. My static files setting is exactly like yours. I also try to add whitenoise but still it didn’t work. What should I do?I allways get the same error when following these instructions.
How can I view error logs ?
Hi What are the proper settings for
MEDIA_ROOT
andMEDIA_URL
??