rs-basic/crates/diesel-demo
Christoph J. Scherr ce71b2ceec
Some checks failed
cargo devel CI / cargo CI (push) Failing after 32s
reorganize the workspace
2025-03-14 22:24:47 +01:00
..
migrations reorganize the workspace 2025-03-14 22:24:47 +01:00
src reorganize the workspace 2025-03-14 22:24:47 +01:00
.env reorganize the workspace 2025-03-14 22:24:47 +01:00
Cargo.toml reorganize the workspace 2025-03-14 22:24:47 +01:00
diesel.toml reorganize the workspace 2025-03-14 22:24:47 +01:00
README.md reorganize the workspace 2025-03-14 22:24:47 +01:00

Diesel seems more complex

This project uses sqlite as I can't be bothered to host a postgres instance just for this.

Setup

  • Install diesel and the diesel CLI tool.
  • DATABASE_URL=./data/dieseldemo.db diesel setup
  • We create migrations up/down and fill them with sql to do something and undo something
  • Alternatively, we can use a rust macro to define schemes that become sql through magic. I like this way better for this project because I learn more diesel and also because it avoids having to deal with incompatibilities of the database types (maybe).
    • Run diesel migration generate --diff-schema create_posts

Ressources

Notes on the CLI

I initially made a bare bones REPL with just regular prints. Eventually, this turned into a demo for CLI libraries too.