- Python 3.12
uv
(recommended for dependency management) but optional.
- Clone the repository
mkdir -p ~/Dev/django-project
cd ~/Dev/django-project
git clone https://github.com/arvind-4/hello-world-in-django-render.git .
- Create a virtual environment and install dependencies
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.
- Run the project
uv run python manage.py runserver