===== Creating a project in Django =====
- Open a folder where you want to create your project.
- Shift + rightclick and open the vscode in current folder. [vscode should be installed in system]
- Go to 3 dots in top navbar -> terminal -> new terminal and open cmd in vscode.
- Create virtual env using command "py -m venv <>.
- Activate the venv using "<>\Scripts\activate"/"<>\Scripts\activate.bat".
- Now install Django using "pip install Django".
- Django-admin startproject <>
- Write command "cd <>".
- python manage.py runserver.
==== Your project in created successfully====# projects