django-language-server/Justfile

25 lines
511 B
Makefile

set dotenv-load := true
set unstable := true
mod docs ".just/docs.just"
mod proto ".just/proto.just"
# List all available commands
[private]
default:
@just --list
bumpver *ARGS:
uv run --with bumpver bumpver {{ ARGS }}
clean:
rm -rf target/
# run pre-commit on all files
lint:
@just --fmt
uv run --with pre-commit-uv pre-commit run --all-files
# generate Pydantic models from Rust types
schema OUTPUT="packages/djls-agent/src/djls_agent/":
cargo dev pydantic --output {{ OUTPUT }}