We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9987955 commit 60bcd4cCopy full SHA for 60bcd4c
1 file changed
justfile
@@ -1,14 +1,22 @@
1
-export PROCESSING_ASSET_ROOT := `realpath ./assets`
+set windows-shell := ["powershell.exe", "-NoLogo", "-Command"]
2
+
3
+export PROCESSING_ASSET_ROOT := canonicalize("./assets")
4
5
default:
6
@just --list
7
8
py-build:
- cd crates/processing_pyo3 && uv run maturin develop
9
+ cd crates/processing_pyo3 && uv run maturin develop --release
10
11
py-run file: py-build
12
cd crates/processing_pyo3 && uv run python ./examples/{{file}}
13
14
+py-jupyter file: py-build
15
+ cd crates/processing_pyo3 && uv run jupyter notebook ./examples/{{file}}
16
17
+py-ipython: py-build
18
+ cd crates/processing_pyo3 && ipython
19
20
wasm-build:
21
wasm-pack build crates/processing_wasm --target web --out-dir ../../target/wasm
22
0 commit comments