May 2018
Beginner to intermediate
526 pages
11h 57m
English
Our first Django project will be building a complete blog. Django provides a command that allows you to create an initial project file structure. Run the following command from your shell:
django-admin startproject mysite
This will create a Django project with the name mysite.
Let's take a look at the project structure generated:
mysite/ manage.py mysite/ __init__.py settings.py urls.py wsgi.py
These files are as follows:
Read now
Unlock full access