Files
biggus-dickus/justfile
T
logaritmisk e7ae41362e chore: add 'just storybook' recipe
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-05 17:00:09 +02:00

25 lines
456 B
Makefile

set dotenv-load
# Run the server (reads .env)
run:
cargo run -p server
# Run the full test suite
test:
cargo test --workspace
# Format with the nightly toolchain
fmt:
cargo +nightly fmt
# Lint, treating warnings as errors
lint:
cargo clippy --workspace --all-targets -- -D warnings
# Run Storybook (web component explorer) on http://localhost:6006
storybook:
cd web && pnpm storybook
# Format, lint, and test
check: fmt lint test