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.txtSetup the database:
cd hello
python manage.py migrateRun the server:
python manage.py runserver