An open API service indexing awesome lists of open source software.

https://github.com/laion-ai/django-htmx-llm-streaming

A prototype showing how to stream using Django x htmx.
https://github.com/laion-ai/django-htmx-llm-streaming

Last synced: 3 months ago
JSON representation

A prototype showing how to stream using Django x htmx.

Awesome Lists containing this project

README

          

# Django x HTMX Protoype

This is a prototype project to demonstrate how Django and HTMX can be used together to create a modern web application.

## Setup

1. Clone the repository
2. Create a virtual environment
3. Install the dependencies
4. Run the migrations
5. adjust the .env variables
6. Run the server

```bash
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
python manage.py migrate
python manage.py runserver
```