leptos/examples/todo_app_sqlite_csr
Daniel Santana cadd217078 Update integration with support for axum 0.7 (#2082)
* chore: update to axum 0.7

Removed http, since it's included in axum, and replaced hyper by http-body-util, which is a smaller.

* chore: update samples to work with nre axum

Missing sessions_axum_auth, pending PR merge.

* chore: all dependencies update to axum 0.7

* chore: cargo fmt

* chore: fix doctests

* chore: Fix example that in reality doesn't use axum.

Fixed anyway.

* chore: more examples support for axum 0.7

* Small tweak
2024-01-19 14:13:55 -05:00
..
e2e ci(leptos): run ci on change instead of check (#2061) 2023-11-24 14:59:13 -05:00
migrations examples: add CSR with server functions example (closes #1975) (#2031) 2023-11-18 08:24:15 -05:00
public examples: add CSR with server functions example (closes #1975) (#2031) 2023-11-18 08:24:15 -05:00
src Update integration with support for axum 0.7 (#2082) 2024-01-19 14:13:55 -05:00
Cargo.toml Update integration with support for axum 0.7 (#2082) 2024-01-19 14:13:55 -05:00
LICENSE examples: add CSR with server functions example (closes #1975) (#2031) 2023-11-18 08:24:15 -05:00
Makefile.toml examples: add CSR with server functions example (closes #1975) (#2031) 2023-11-18 08:24:15 -05: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
rust-toolchain.toml chore: add rust-toolchain.toml to examples (closes #2151) (#2161) 2024-01-07 15:29:54 -05:00
style.css examples: add CSR with server functions example (closes #1975) (#2031) 2023-11-18 08:24:15 -05:00
Todos.db examples: add CSR with server functions example (closes #1975) (#2031) 2023-11-18 08:24:15 -05:00

Leptos Todo App Sqlite with CSR

This example shows how to combine client-side rendering with server functions, i.e., using server functions as a convenient way to create an ad hoc API, but without using server-side rendering and hydration.

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.