mirror of
https://github.com/TabbyML/tabby
synced 2024-11-22 08:21:59 +00:00
34 lines
1.7 KiB
Makefile
34 lines
1.7 KiB
Makefile
fix:
|
|
cargo machete --fix || true
|
|
cargo +nightly fmt
|
|
cargo +nightly clippy --fix --allow-dirty --allow-staged -- -W clippy::unwrap_used
|
|
|
|
fix-ui:
|
|
cd ee/tabby-ui && yarn format:write && yarn lint:fix
|
|
|
|
update-ui:
|
|
cd ee/tabby-ui && yarn build
|
|
rm -rf ee/tabby-webserver/ui && cp -R ee/tabby-ui/out ee/tabby-webserver/ui
|
|
|
|
bump-version:
|
|
cargo ws version --no-git-tag --force "*"
|
|
|
|
bump-release-version:
|
|
cargo ws version --allow-branch "r*" --no-individual-tags --force "*"
|
|
|
|
update-openapi-doc:
|
|
curl http://localhost:8080/api-docs/openapi.json | jq ' \
|
|
delpaths([ \
|
|
["paths", "/v1beta/chat/completions"], \
|
|
["paths", "/v1beta/search"], \
|
|
["components", "schemas", "CompletionRequest", "properties", "prompt"], \
|
|
["components", "schemas", "CompletionRequest", "properties", "debug_options"], \
|
|
["components", "schemas", "CompletionResponse", "properties", "debug_data"], \
|
|
["components", "schemas", "DebugData"], \
|
|
["components", "schemas", "DebugOptions"] \
|
|
])' | jq '.servers[0] |= { url: "https://playground.app.tabbyml.com", description: "Playground server" }' \
|
|
> website/static/openapi.json
|
|
|
|
update-graphql-schema:
|
|
cargo run --package tabby-webserver --example update-schema
|