Introduce Database handling through SeaORM

This commit is contained in:
Quentin Boyer 2023-05-20 11:39:34 +02:00
parent 37331cd24d
commit e4765a20ef
12 changed files with 169 additions and 2 deletions

View file

@ -26,7 +26,12 @@
};
in {
devShell = pkgs.mkShell {
nativeBuildInputs = [rust pkgs.trunk pkgs.httpie];
nativeBuildInputs = [
rust
pkgs.trunk
pkgs.httpie
pkgs.sea-orm-cli
];
RUST_PATH = "${rust}";
RUST_DOC_PATH = "${rust}/share/doc/rust/html/std/index.html";
};