fmt:
    cargo fmt --all

test:
    cargo test --all-targets

static-check:
    node --check static/app.js

clippy:
    cargo clippy --all-targets

nginx-smoke:
    ./scripts/nginx-smoke.sh

check:
    just fmt
    just test
    just static-check
    just clippy

run:
    cargo run
