From 93e554674be1d5a05af07813ef28f979940864a6 Mon Sep 17 00:00:00 2001 From: Pavel Dedik Date: Fri, 28 Jun 2024 17:17:03 +0200 Subject: [PATCH] docs: Update REAMDE.md --- README.md | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index bca23a1..e3ed8f6 100644 --- a/README.md +++ b/README.md @@ -37,16 +37,10 @@ Here is a table comparing Ludic to other similar tools: | HTML rendering | Server Side | Client Side | Client Side | | Uses a template engine | No | No | No | | UI interactivity | [ htmx](https://htmx.org)* | [React](https://react.dev/) | [React](https://react.dev/) | -| Backend framework | [Starlette](https://www.starlette.io)* | [FastAPI](https://fastapi.tiangolo.com) | [FastAPI](https://fastapi.tiangolo.com) | +| Backend framework | [Starlette](https://www.starlette.io), [Django](https://www.djangoproject.com/)* | [FastAPI](https://fastapi.tiangolo.com) | [FastAPI](https://fastapi.tiangolo.com) | | Client-Server Communication | [HTML + REST](https://htmx.org/essays/how-did-rest-come-to-mean-the-opposite-of-rest/) | [JSON + REST](https://github.com/pydantic/FastUI?tab=readme-ov-file#the-principle-long-version) | [WebSockets](https://reflex.dev/blog/2024-03-21-reflex-architecture/) | -(*) HTMX as well as Starlette are optional dependencies for Ludic, it does not enforce any frontend or backend frameworks. At it's core, Ludic only generates HTML and allows registering CSS. - -## Quick Demo - -

- Quick Demo -

+(*) HTMX as well as Starlette or Django are optional dependencies for Ludic, it does not enforce any frontend or backend frameworks. At it's core, Ludic only generates HTML and allows registering CSS. ## Motivation @@ -161,6 +155,13 @@ To run the application: uvicorn web:app ``` +### Integrations + +Here is a list of integrations and a link to the guide on how to get started: + +* [Starlette](https://getludic.dev/docs/web-framework) +* [Django](https://getludic.dev/docs/integrations#django) + ### More Examples For more complex usage incorporating all capabilities of the framework, please visit the examples on [the web](https://getludic.dev/examples) or go to the folder with examples [on GitHub](https://github.com/getludic/ludic/tree/master/examples/).