Files
git-su/justfile
T
ozzy cfc636fb5a initial commit
initialize cargo, just, and dependencies
2026-08-31 14:27:25 -05:00

18 lines
240 B
Makefile

_default:
just --list
# Run the bot
[group('dev')]
run *args:
cargo run {{args}}
# Clean up previous builds
[group('build')]
clean:
cargo clean
# Build the bot for production
[group('build')]
build:
cargo build --release