Skip to content

Getting Started with Django

What is Django?

Django is a high-level Python Web framework that encourages rapid development and clean, pragmatic design. It takes care of much of the hassle of Web development, so you can focus on writing your app without needing to reinvent the wheel.

Django is a full-featured web framework that follows the Model-View-Controller (MVC) architectural pattern. It provides a set of tools and libraries for building web applicationss, including an ORM, a templating engine, and a built-in admin interface.

Environment Setup

To get started with Django, you’ll need to install it on your computer. You can do this by running the following command in your terminal, after setting up a virtual environment:

Terminal window
python3 -m venv .venv
# for windows
# python -m venv .venv
# to activate the virtual environment
source .venv/bin/activate
# for windows
# .venv\Scripts\activate

This is regular way but these days I am using uv to manage virtual environment and other tools. It’s rediculously easy and fast.

Terminal window
# On Windows.
powershell -c "irm https://astral.sh/uv/install.ps1 | iex"
# With pip.
pip install uv
# With Homebrew.
brew install uv
# to create a virtual environment
uv venv
# activation commands are same as above
# On macOS and Linux.
source .venv/bin/activate
# On Windows.
.venv\Scripts\activate

Now for all installations, you can use uv pip install command. For example, to install Django, run the following command:

Terminal window
uv pip install django
uv pip install -r requirements.txt

Django Project

A Django project is a collection of settings and configurations that define the structure and behavior of a web application. It includes the code for the application, as well as the templates, static files, and other resources that make up the application.

To create a new Django project, you can use the following command:

Terminal window
django-admin startproject chaiaurdjango
cd chaiaurdjango

This will create a new directory called chaiaurdjango with the basic structure of a Django project.

Start a Django Server

To start the Django server, you can use the following command:

Terminal window
python manage.py runserver

This will start the server and make it accessible at http://localhost:8000.

Ignore the unapplied migrations warning. This is a common issue when starting a new Django project. We will address this in a later section.

Creating our first views

Create a new file called views.py in the chaiaurdjango directory. In this file, we will define a few views that are simple functions that return a response. We want to have home page, about page, and contact page. Each of these pages will return html content.

from django.http import HttpResponse
def home(request):
return HttpResponse("<h1>Welcome to Chai's Django Project: Home page</h1>")
def about(request):
return HttpResponse("<h1>Welcome to Chai's Django Project: About page</h1>")
def contact(request):
return HttpResponse("<h1>Welcome to Chai's Django Project: Contact page</h1>")

Now, let’s create a new file called urls.py in the chaiaurdjango directory. In this file, we will define the URL patterns for our application. If the file is already there, you can just add the following code to the end of the file:

from django.urls import path
from . import views
urlpatterns = [
path('', views.home, name='home'),
path('about/', views.about, name='about'),
path('contact/', views.contact, name='contact'),
]

Now, let’s run the server again and visit the following URLs:

You should see the following output:

Welcome to Chai's Django Project: Home page
Welcome to Chai's Django Project: About page
Welcome to Chai's Django Project: Contact page

Adding Templates

In Django, templates are used to generate HTML pages. They are used to display data and perform logic in a web application. To create a template, you can create a new file called templates/index.html in the chaiaurdjango directory. Make sure that template folder is at same level as manage.py file. In this file, you can write HTML code that will be used to generate the HTML page.

<!DOCTYPE html>
<html>
<head>
<title>Welcome to Chai's Django Project</title>
</head>
<body>
<h1>Welcome to Chai's Django Project</h1>
</body>
</html>

Now, let’s run the server again and visit the http://localhost:8000/ URL. You should see the following output:

Welcome to Chai's Django Project

Adding CSS and JavaScript

To add CSS and JavaScript to your Django project, you can create a new file called static/css/style.css in the chaiaurdjango directory. In this file, you can write CSS code that will be used to style the HTML page. You can also create a new file called static/js/script.js in the chaiaurdjango directory. In this file, you can write JavaScript code that will be used to add interactivity to the HTML page.

body {
background-color: #161616;
font-family: Arial, sans-serif;
color: #fff;
}
console.log("Hello, world!");

To add this css file go to settings.py and add the following line:

import os # at the top of settings.py
'DIRS': ['templates'], # inside template section
STATIC_URL = '/static/' # below this add the following line
STATICFILES_DIRS = [os.path.join(BASE_DIR, 'static')]

In the index.html file, add the following line:

at the top of the file:

{% load static %}
<link rel="stylesheet" href="{% static 'css/style.css' %}">

Now, let’s change the home view to use the new template:

from django.shortcuts import render
def home(request):
return render(request, 'index.html')

Now, let’s run the server again and visit the http://localhost:8000/ URL. You should see the following output:

Welcome to Chai's Django Project

Conclusion

This is the end of the first part of the tutorial. We will surely have more fun in the next part. Subscribe to our youtube channel to get notified about the next part of the tutorial. Keep enjoying Tea and Django!