-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathjustfile
44 lines (30 loc) · 1.13 KB
/
justfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
@_default:
just --list
build:
cargo build --release
test:
cargo test --release
format:
cargo fmt
clippy:
cargo clippy
check:
cargo check
install_deps:
./scripts/install_deps.sh
help:
cargo run --release --bin bubbaloop -- --help
serve HOST="0.0.0.0" PORT="3000":
RUST_LOG=debug cargo run --release --bin serve -- -h {{HOST}} -p {{PORT}}
whoami HOST PORT:
RUST_LOG=info cargo run --release --bin bubbaloop -- -h {{HOST}} -p {{PORT}} stats whoami
compute-mean-std HOST PORT PATH:
RUST_LOG=info cargo run --release --bin bubbaloop -- -h {{HOST}} -p {{PORT}} compute mean-std -i {{PATH}}
pipeline-start HOST PORT ID:
RUST_LOG=info cargo run --release --bin bubbaloop -- -h {{HOST}} -p {{PORT}} pipeline start -i {{ID}}
pipeline-stop HOST PORT ID:
RUST_LOG=info cargo run --release --bin bubbaloop -- -h {{HOST}} -p {{PORT}} pipeline stop -i {{ID}}
pipeline-list HOST PORT:
RUST_LOG=info cargo run --release --bin bubbaloop -- -h {{HOST}} -p {{PORT}} pipeline list
pipeline-config HOST PORT:
RUST_LOG=info cargo run --release --bin bubbaloop -- -h {{HOST}} -p {{PORT}} pipeline config