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.
- Host: GitHub
- URL: https://github.com/nithink-142/explore-django
- Owner: nithinK-142
- Created: 2024-05-12T13:51:46.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-05-27T05:24:55.000Z (over 1 year ago)
- Last Synced: 2024-12-29T15:17:49.564Z (12 months ago)
- Topics: django, pip, python, uv
- Language: Python
- Homepage:
- Size: 43.9 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```