An open API service indexing awesome lists of open source software.

https://github.com/nithink-142/explore-django

exploring django.
https://github.com/nithink-142/explore-django

django pip python uv

Last synced: 10 months ago
JSON representation

exploring django.

Awesome Lists containing this project

README

          

## Explore Django

#### Create a virtual environment

```bash
uv venv
```

#### Activate the virtual environment

```bash
.venv\Scripts\activate # On Windows
```

#### Install Django

```bash
pip install Django
```

#### Start a new Django project

```bash
django-admin startproject exploreDjango
```

#### Navigate to the project directory

```bash
cd exploreDjango
```

#### Run the development server

```bash
python manage.py runserver
```