Here Are Some Important Channels on Youtube(Search channel name on Youtube)
- CodeWithHarry
- geekyshows
- PyPlane
- CodingForEnterprenours
- JustDjango
Here Are Some Important Website(Search website on Google)
- https://docs.djangoproject.com/en/3.0/intro/tutorial01/
- https://djangogirls.org/
- https://medium.com/
- https://dev.to/
Django Advance Topics
Watch Video Here Watch Video Here Watch Video Here Watch Video Here Watch Video HereThe clean, fast and right way to start a new Django3.0.7
powered website.
Setup project environment with virtualenv and pip.
$ python3 -m venv project-env
$ source project-env/bin/activate
$ pip install -r requirements.txt
# You may want to change the name `projectname`.
$ django-admin startproject --template https://github.com/GK-SVG/repo-name/archive/master.zip projectname
$ cd projectname/
$ python manage.py migrate
$ python manage.py runserver
-
Basic Django scaffolding (commands, templatetags, statics, media files, etc).
-
Simple logging setup ready for production envs.
I love contributions, so please feel free to fix bugs, improve things, provide documentation. Just send a pull request.