Implementation of real-world application: https://github.com/gothinkster/realworld/ using Django and HTMX.
An in-depth discussion of this implementation can be found here.
Tech Stack:
To install and run locally:
# Create the python virtualenv
python -m venv venv
# Activate the virtualenv for the current shell
. venv/bin/activate
# Install the required python packages with pip
pip install -r requirements.txt
# Run the DB migrations
./manage.py migrate
# Start the application listening at localhost:8000
./manage.py runserver localhost:8000
# Curl the http endpoint (or open it in your browser)
curl http://localhost:8000
Note: this is just a reference implementation and is not intended for production use.