This is an example of how to set up a Django application to deploy on Kinsta’s Application Hosting services from a GitHub repository.
Django is a Python-based web framework, so Kinsta automatically installs dependencies defined in your requirements.txt file during the build process.
The python manage.py collectstatic
command executes at every build to collect all static files to the directory defined in STATIC_ROOT
.
- Log in to GitHub and create a new repository from this template (Use this template > Create a new repository): Kinsta – Hello World – Django.
- In MyKinsta, add an application with the Hello World – Django repository.
- In Environment variables, in Key 1 enter
SECRET_KEY
, and in Value 1, add a random string, select Available during runtime and Available during build process. - In Set up your processes, in the Start command enter
gunicorn helloworld.wsgi
.
The app is available as soon as the build finishes, and the default Django page confirming successful installation loads at your application’s URL.

Environment Variables
The SECRET_KEY
should not be stored in your repository but rather set up in an environment variable with a random string.
Web Server Setup
Start Command
When you deploy an application, Kinsta automatically creates a process based on the Procfile in the root of the repository. Make sure to use this command to run your server:
web: gunicorn helloworld.wsgi