Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/paultuckey/example-todo-app-rust-htmx

An example TODO app written with Rust and HTMx
https://github.com/paultuckey/example-todo-app-rust-htmx

Last synced: 27 days ago
JSON representation

An example TODO app written with Rust and HTMx

Awesome Lists containing this project

README

        

# Example TODO app with Rust and htmx

A simple example TODO app build using:

- [htmx](https://htmx.org/)
- [Rust](https://www.rust-lang.org/)
- [Rocket](https://rocket.rs/) web framework using handlebars templates
- [SQLx](https://github.com/launchbadge/sqlx) and [SQLite](https://sqlite.org/)

## Run

```shell
cargo run
```

## Hot Reloading

Install cargo watch with `cargo install cargo-watch` then use:

```shell
cargo watch -x run
```

## Syntax Check

```shell
cargo clippy
```