Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/paultuckey/example-todo-app-rust-htmx
- Owner: paultuckey
- Created: 2024-06-16T05:52:49.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-08-17T06:11:32.000Z (3 months ago)
- Last Synced: 2024-08-18T06:49:23.271Z (3 months ago)
- Language: Rust
- Size: 15.6 KB
- Stars: 7
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```