https://github.com/arvind-4/hello-world-in-django-render
A simple hello world app in django and postgres db!
https://github.com/arvind-4/hello-world-in-django-render
django postgres python-3-12
Last synced: about 2 months ago
JSON representation
A simple hello world app in django and postgres db!
- Host: GitHub
- URL: https://github.com/arvind-4/hello-world-in-django-render
- Owner: arvind-4
- Created: 2023-03-16T18:09:30.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2025-04-10T13:29:42.000Z (about 1 year ago)
- Last Synced: 2025-10-22T20:10:06.967Z (8 months ago)
- Topics: django, postgres, python-3-12
- Language: Python
- Homepage: https://github.com/arvind-4/hello-world-in-django-render
- Size: 18.6 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hello World Django app
### 🧰 Requirements
- **Python 3.12**
- [`uv`](https://github.com/astral-sh/uv) (recommended for dependency management) but optional.
### 🚀 Setup Instructions
1. **Clone the repository**
```bash
mkdir -p ~/Dev/django-project
cd ~/Dev/django-project
git clone https://github.com/arvind-4/hello-world-in-django-render.git .
```
2. **Create a virtual environment and install dependencies**
```bash
uv venv
uv sync
```
> Alternatively, If you are not using uv, run `pip install -r requirements.txt -r requirements-dev.txt` to install all dependencies at once.
3. **Run the project**
```bash
uv run python manage.py runserver
```