Initial justfile
This commit is contained in:
parent
1e02b39199
commit
c2b7c12905
2 changed files with 23 additions and 1 deletions
22
justfile
Normal file
22
justfile
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
# Temporary until we have a frontend.
|
||||
set working-directory := 'backend'
|
||||
|
||||
dev:
|
||||
cargo run
|
||||
|
||||
build:
|
||||
cargo build
|
||||
|
||||
test-unit:
|
||||
cargo test
|
||||
|
||||
fmt:
|
||||
cargo fmt --check
|
||||
|
||||
lint:
|
||||
cargo clippy
|
||||
|
||||
clean:
|
||||
cargo clean
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue