django-project-template

Setup - only once

python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt

Create project - only once

django-admin startproject test_project
cd test_project
django-admin startapp test_app

Run the project

python manage.py migrate
python manage.py runserver