leptos/examples/todo_app_sqlite_axum
Saber Haj Rabiee e01dfbf497
fix: update to wasm-bindgen 0.2.93 (#2827)
2024-08-13 15:21:57 -07:00
..
e2e chore: upgrade dependencies (#2765) 2024-08-10 20:01:41 -04:00
migrations Move the examples out of the workspace, and standardize naming. All of the SSR examples now work with cargo-leptos 2022-12-31 15:52:19 -08:00
public Add Favicons to all the examples and standardize on the public folder for public assets 2023-01-09 15:27:52 -08:00
src examples: update to `Suspend::new()` 2024-08-01 19:42:51 -04:00
Cargo.toml fix: update to wasm-bindgen 0.2.93 (#2827) 2024-08-13 15:21:57 -07:00
LICENSE Move the examples out of the workspace, and standardize naming. All of the SSR examples now work with cargo-leptos 2022-12-31 15:52:19 -08:00
Makefile.toml refactor(examples): extract client process tasks (#1665) (#1666) 2023-09-08 07:31:55 -04:00
README.md docs: make it easy to see how to run each example in its README (#2085) 2023-11-28 11:47:56 -05:00
Todos.db feat: return an async guard from .await rather than cloning the value every time 2024-08-01 19:41:12 -04:00
rust-toolchain.toml chore(ci): run all examples under stable and fix remaining linting issue (#2503) 2024-04-05 16:09:23 -04:00
style.css feat: provide `Request<_>` in context for Axum, enabling easier extractor use (#632) 2023-03-10 17:28:32 -05:00

README.md

Leptos Todo App Sqlite with Axum

This example creates a basic todo app with an Axum backend that uses Leptos' server functions to call sqlx from the client and seamlessly run it on the server.

Getting Started

See the Examples README for setup and run instructions.

E2E Testing

See the E2E README for more information about the testing strategy.

Rendering

See the SSR Notes for more information about Server Side Rendering.

Quick Start

Run cargo leptos watch to run this example.