Django Fundamentals
Create a Django Project & AppEasyWrite Code
1/10
startproject / startapp

Description

Set up a new Django project called `mysite` and create an app called `blog` within it. Write the commands and configuration needed to register the app.

Requirements

01Show the terminal commands to create the project and app
02Update `INSTALLED_APPS` in `settings.py` to include the new app
03Explain what `manage.py` does and how the project structure works
Python 3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Ln 14, Col 1