This commit is contained in:
Chris Cochrun 2025-06-30 09:48:23 -05:00
parent 0c59897922
commit 2ca2698cb7
333 changed files with 325907 additions and 7 deletions

20
justfile Normal file
View file

@ -0,0 +1,20 @@
ui := "-i"
file := "~/dev/lumina-dioxus/test_presentation.lisp"
default:
just --list
build:
RUST_LOG=debug cargo build
css:
tailwindcss -i assets/styling/tailwind.css -o assets/styling/main.css --watch
run:
RUST_LOG=debug cargo run --release -- {{ui}}
clean:
RUST_LOG=debug cargo clean
test:
RUST_LOG=debug cargo test --benches --tests --all-features -- --nocapture
profile:
cargo flamegraph --image-width 4000 -- {{ui}} {{file}}
alias r := run
alias c := clean