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.
- Host: GitHub
- URL: https://github.com/laion-ai/django-htmx-llm-streaming
- Owner: LAION-AI
- Created: 2024-06-12T14:47:11.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-06-12T15:54:32.000Z (over 1 year ago)
- Last Synced: 2025-05-07T18:13:43.177Z (8 months ago)
- Language: JavaScript
- Size: 358 KB
- Stars: 2
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```