The following is review of the tutorial for Django Application development.
Sections are based on the mysite/ directory; where each directory is an improvement on the previous section
- Section 1: Creating Projects & Applications
- mysite1
- Section 2: Creating First Application - contains repeat steps of Section 1
- Section 3: Configuring Admin
- mysite2
- Section 4: Models & Database Configuration
- Section 5: Basic Views
- mysite3
For this project we are using python3.9
- django -
pip3 install django
# validate django is installed
import django
django.get_version()
'3.2.9'