-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjustfile
More file actions
42 lines (30 loc) · 1 KB
/
justfile
File metadata and controls
42 lines (30 loc) · 1 KB
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
docs-python:
just docs-python-clean
python -m pip install -e bindings/python[docs]
python -m pdoc --docformat google --output-dir bindings/python/docs pytekhsi
docs-python-clean:
rm -rf bindings/python/docs
docs-node:
just docs-node-clean
cd bindings/node && yarn install && yarn docs
docs-node-clean:
rm -rf bindings/node/docs
build:
cargo build
server:
tests/server/run-server.sh
test:
cargo test --features client-id-header
bench addr="127.0.0.1:5000":
cargo run --profile profiling --example benchmark -- {{ addr }}
scopeapp addr="127.0.0.1:5000":
cargo run --release -p scopeapp -- {{ addr }}
scopeapp-dev addr="127.0.0.1:5000":
cargo run -p scopeapp -- {{ addr }}
scopeapp-bench addr="127.0.0.1:5000":
cargo run --profile profiling -p scopeapp -- {{ addr }}
pyscopeapp:
just pyscopeapp-setup
python bindings/python/examples/pyscopeapp/main.py
pyscopeapp-setup:
python -m pip install -r bindings/python/examples/pyscopeapp/requirements.txt