Files
define/justfile
T
ozzy 7a92af6721 initialize repository
initialize cargo, just, and dependencies
2026-08-30 15:02:13 -05:00

18 lines
225 B
Makefile

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