django-admin startproject Explained
Generate the project skeleton and read each file.
Scaffold a Project
Django can generate a working project skeleton for you. The startproject command builds the folders and files you need to begin. 🏗️
django-admin startproject mysiteWhat Got Created
You now have an outer mysite folder holding manage.py plus an inner config package. That structure is the backbone of every Django app.
All lessons in this course
- Virtual Environments with venv
- pip install django and Pinning Versions
- django-admin startproject Explained
- Run the Dev Server with runserver