Setting Up Your Django Project
A step-by-step guide to creating your first Django project and app.
Setting Up Your Project
First things first, you need to create your Django project. Open your terminal and navigate to the directory where you want to store your project. Run the following command to create a new Django project:
django-admin startproject myfirstproject
Replace "myfirstproject" with a name of your choice. This command will create a new directory with your project name, containing all the essential files and folders. Navigate into this new directory with:
cd myfirstproject
You’ll find a structure like this:
myfirstproject/
manage.py
myfirstproject/
__init__.py
settings.py
urls.py
wsgi.py
Creating Your First App
In Django, a project can contain multiple apps. Each app serves a specific purpose and keeps your code organized. Let’s create your first app, which we'll call "blog." Run the following command inside your project directory:
python manage.py startapp blog
This command creates a new directory named "blog" with all the necessary files for your app. Your project structure now includes the blog app:
myfirstproject/
blog/
__init__.py
admin.py
apps.py
models.py
tests.py
views.py
myfirstproject/
__init__.py
settings.py
urls.py
wsgi.py
manage.py
Adding the App to Your Project
Next, you need to tell Django about your new app. Open the settings.py
file located in your project's main directory. Look for the INSTALLED_APPS
list and add 'blog' to it:
INSTALLED_APPS = [
...
'blog',
]
This tells Django to include your blog app when it starts the project. Now, Django knows that your blog app exists and can include it in the project.
Creating Your First View
A view in Django handles the logic of your web application and returns a response to the user. Let’s create a simple view in your blog app. Open the views.py
file inside the blog directory and add the following code:
from django.http import HttpResponse
def home(request):
return HttpResponse("Hello, welcome to my blog!")
This view function, home
, takes a request object as a parameter and returns a simple "Hello, welcome to my blog!" message. It’s time to map this view to a URL.
Mapping URLs
To see your view in action, you need to map it to a URL. Create a new file named urls.py
inside your blog directory and add the following code:
from django.urls import path
from . import views
urlpatterns = [
path('', views.home, name='home'),
]
Next, you need to include this URL configuration in your project's main urls.py
file. Open myfirstproject/urls.py
and modify it as follows:
from django.contrib import admin
from django.urls import include, path
urlpatterns = [
path('admin/', admin.site.urls),
path('', include('blog.urls')),
]
Now, when you visit the root URL of your project, Django will use the URL patterns defined in your blog app.
Running the Development Server
With your view and URL configured, it’s time to see everything in action. Run the following command to start Django’s built-in development server:
python manage.py runserver
Open your web browser and navigate to http://127.0.0.1:8000/
. You should see the message "Hello, welcome to my blog!" Congratulations, you’ve just created your first Django view and displayed it in your browser!
Creating a Model
A model in Django defines the structure of your database. Let’s create a simple model for blog posts. Open models.py
in your blog directory and add the following code:
from django.db import models
class Post(models.Model):
title = models.CharField(max_length=100)
content = models.TextField()
date_posted = models.DateTimeField(auto_now_add=True)
def __str__(self):
return self.title
This code defines a Post model with a title, content, and date_posted field. The __str__
method returns the title of the post when the object is printed.