chore: add makefile to frequently used commands

This commit is contained in:
Dmitriy Pleshevskiy 2022-05-15 14:49:03 +03:00
parent c19407940b
commit 8c0a60a4e8
1 changed files with 13 additions and 0 deletions

13
makefile Normal file
View File

@ -0,0 +1,13 @@
api-r:
cargo run --bin api
api-t:
cargo test --bin api
w-api-r:
cargo watch -i db -x "run --bin api"
w-api-t:
cargo watch -i db -x "test --bin api"