An app for demonstrating the HTMX examples on https://htmx.org/examples/. Im am adding one at a time
Create a virtual environment.
$ python3 -m venv venvActivate the virtual environment.
$ source venv/bin/activateInstall developer and application packages.
(venv) $ pip install -r requirements.txtMigrate Database
(venv) $ python manage.py migrateRun tests
(venv) $ pytestRun server
(venv) $ python manage.py runserver