0% found this document useful (0 votes)
49 views4 pages

Simple Django Project Setup Guide

Uploaded by

Amith G Nair
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
49 views4 pages

Simple Django Project Setup Guide

Uploaded by

Amith G Nair
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Here’s a draft for a simple Django project with an explanation:

Steps to Create a Simple Django Project

Install Django
Make sure you have Django installed. Use the following command:

pip install django

1.

Start a New Project


Create a new project by running:

django-admin startproject myproject

2.

Create an Application
Navigate to your project directory and create an app:

cd myproject

python [Link] startapp myapp

3.

Code Structure

1. [Link]

Register your app in the INSTALLED_APPS section:


INSTALLED_APPS = [

...

'myapp',

2. [Link] (Defining a Database Model)

Define a simple model for storing articles:

from [Link] import models

class Article([Link]):
title = [Link](max_length=100) # Title of the article

content = [Link]() # Content of the article

created_at = [Link](auto_now_add=True) # Timestamp for creation

def __str__(self):

return [Link] # Representation of the object

Run migrations to create the database schema:


python [Link] makemigrations

python [Link] migrate

3. [Link] (Defining Views)

Create a view to display articles:

from [Link] import render

from .models import Article

def article_list(request):

articles = [Link]() # Fetch all articles

return render(request, 'article_list.html', {'articles': articles})

4. [Link] (Configuring URLs)

Create a [Link] file in your app and map the view:

from [Link] import path

from . import views

urlpatterns = [

path('', views.article_list, name='article_list'),

]
Include your app’s [Link] in the project’s [Link]:
from [Link] import admin

from [Link] import path, include

urlpatterns = [

path('admin/', [Link]),

path('', include('[Link]')), # Include app URLs

5. templates/article_list.html (HTML Template)

Create a template to display the articles:

<!DOCTYPE html>

<html>

<head>

<title>Article List</title>

</head>

<body>

<h1>Articles</h1>

<ul>

{% for article in articles %}

<li>{{ [Link] }} - {{ article.created_at }}</li>

{% endfor %}

</ul>

</body>

</html>

6. Run the Development Server

Start the Django development server:

python [Link] runserver


Visit [Link] in your browser to see the article list.

Explanation of Key Concepts

1. [Link]

○ Defines the structure of your database table using Django's ORM.


○ The Article model includes fields for title, content, and created_at.
2. [Link]

○ Handles the logic for fetching data from the database and passing it to the template.
3. [Link]

○ Maps a URL path to a view function.


4. Templates

○ Use Django's templating language to dynamically display data in HTML.

This setup is a foundational Django application demonstrating the MVC (Model-View-Controller) pattern.
Let me know if you'd like more details or want to extend this project!

You might also like