mirror of
https://github.com/kristoferssolo/maze-ascension.git
synced 2025-10-21 19:20:34 +00:00
chore: add justfile
This commit is contained in:
parent
70579168a2
commit
3f0ba6d0d8
20
justfile
Normal file
20
justfile
Normal file
@ -0,0 +1,20 @@
|
||||
# Default recipe
|
||||
default:
|
||||
@just --list
|
||||
|
||||
# Run native dev
|
||||
native-dev:
|
||||
RUST_BACKTRACE=full cargo run
|
||||
|
||||
# Run native release
|
||||
native-release:
|
||||
cargo run --release --no-default-features
|
||||
|
||||
# Run web dev
|
||||
web-dev:
|
||||
RUST_BACKTRACE=full trunk serve
|
||||
|
||||
# Run web release
|
||||
web-release:
|
||||
trunk serve --release --no-default-features
|
||||
|
||||
Loading…
Reference in New Issue
Block a user