Welcome to this full Django course. This course is perfect for anyone looking to learn Django or polish up on their skills.
- Python=>3.10
First you will need to clone down the first module.
-
Create a new directory on your local machine. I have called mine django_course. This is your 'root directory'.
-
Open a terminal and cd into the root directory.
-
You can now clone the first module. You can do this a few different ways. I use SSH...
#option 1 - SSH
git clone --branch module_1 git@github.com:bobby-didcoding/django_course.git .
#option 2 - Github CLI
gh repo clone bobby-didcoding/django_course .
git checkout module_1
#option 3 - HTTPS
git clone --branch module_1 https://github.com/bobby-didcoding/django_course.git .
Each module has a walk through video. All videos can be found in my Django 4.0 tutorial playlist.
Please open /steps/module_1 to begin.