Skip to content

AlMahllawi/django-intro

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Django Introduction

A simple introduction to Django, a project that has a single application to render multiple HTML pages.

Python Virtual Environment

python -m venv .
  • Activate the venv.
source bin/activate

Install Django

Using pip:

pip install django

Collect static files

python manage.py collectstatic

Migrate database models

python manage.py makemigrations
python manage.py migrate
python manage.py runserver

Preview

Preview

About

A simple introduction to Djange.

Resources

Stars

Watchers

Forks