Skip to content

nithinK-142/explore-django

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 

Repository files navigation

Explore Django

Create a virtual environment

uv venv

Activate the virtual environment

.venv\Scripts\activate  # On Windows

Install Django

pip install Django

Start a new Django project

django-admin startproject exploreDjango

Navigate to the project directory

cd exploreDjango

Run the development server

python manage.py runserver