A minimal working example of a django project.
Create a virtual environment and install the dependencies:
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
Setup the database:
cd hello
python manage.py migrate
Run the server:
python manage.py runserver