7a92af6721
initialize cargo, just, and dependencies
18 lines
225 B
Makefile
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
|