My personal site cherry.computer
htmx tailwind axum askama

build: add justfile

This makes it easy to spin up a development server that will rebuild on
file changes.

cherry.computer 2c21510a 8b331bfd

verified
+10
+10
justfile
···
··· 1 + [parallel] 2 + serve: serve-js serve-rs 3 + 4 + [working-directory: 'frontend'] 5 + serve-js: 6 + npm start 7 + 8 + [working-directory: 'server'] 9 + serve-rs $RUST_LOG=env('RUST_LOG', 'debug'): 10 + watchexec --restart --ignore "target/**" cargo run