===== Creating a project in Django =====

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

==== Your project in created successfully====# projects