I've been thinking a lot about the treehouse and I feel like it's time to say goodbye to the tree format.
13 lines
198 B
Makefile
13 lines
198 B
Makefile
port := "8080"
|
|
|
|
serve:
|
|
RUST_BACKTRACE=1 cargo watch -- cargo run -- serve --port {{port}}
|
|
|
|
fix:
|
|
cargo run -- fix-all --apply
|
|
|
|
ulid:
|
|
cargo run -- ulid
|
|
|
|
deploy:
|
|
bash admin/deploy.bash
|