Skip to content

ericsdevblog/django-beginner

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Django for Beginners

Django is a Python-based web framework that allows you to quickly create a web application in a matter of hours.

This repository contains two different projects: the mvc-structure-demo project is a basic project demonstrating the model-view-controller architecture, and the blog-demo project is a full blog application.

These demo projects are created for the Django for Beginners tutorial:


To test the demo projects, please follow these steps:

  1. Clone the repository to your machine:
git clone https://github.com/ericsdevblog/django-tutorial.git
  1. cd into either project, mvc-structure-demo or blog-demo.

  2. Install requirements:

    pip install -r requirements.txt
  3. Start the dev server:

    python manage.py runserver

If you are interested, please also take a look at my other tutorial series: