22 lines
222 B
Makefile
22 lines
222 B
Makefile
# 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
|
|
|
|
|