Nix shell, pg docker, fix paths, replaced make with just

This commit is contained in:
2025-03-05 21:56:41 +01:00
parent f7036a18a0
commit e4024d05f9
11 changed files with 127 additions and 40 deletions

23
justfile Normal file
View File

@ -0,0 +1,23 @@
run:
cargo run
fmt:
cargo fmt
lint:
cargo clippy
release:
cargo build --release
run_migrations:
diesel migration run
redo_migrations:
diesel migration redo
test:
cargo test --all-features
coverage:
cargo llvm-cov