mirror of
https://github.com/TabbyML/tabby
synced 2024-11-22 08:21:59 +00:00
5027d466ed
* chore(email): fix build * update
46 lines
2.3 KiB
Makefile
46 lines
2.3 KiB
Makefile
fix:
|
|
cargo machete --fix || true
|
|
cargo +nightly fmt
|
|
cargo clippy --fix --allow-dirty --allow-staged
|
|
|
|
fix-ui:
|
|
pnpm lint:fix
|
|
|
|
update-ui:
|
|
pnpm build
|
|
rm -rf ee/tabby-webserver/ui && cp -R ee/tabby-ui/out ee/tabby-webserver/ui
|
|
rm -rf ee/tabby-webserver/email_templates && cp -R ee/tabby-email/out ee/tabby-webserver/email_templates
|
|
|
|
update-db-schema:
|
|
sqlite3 ee/tabby-db/schema.sqlite ".schema --indent" > ee/tabby-db/schema/schema.sql
|
|
sqlite3 ee/tabby-db/schema.sqlite -init ee/tabby-db/schema/sqlite-schema-visualize.sql "" > schema.dot
|
|
dot -Tsvg schema.dot > ee/tabby-db/schema/schema.svg
|
|
rm schema.dot
|
|
|
|
caddy:
|
|
caddy run --watch --config ee/tabby-webserver/development/Caddyfile
|
|
|
|
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"], \
|
|
["paths", "/v1beta/server_setting"], \
|
|
["components", "schemas", "CompletionRequest", "properties", "prompt"], \
|
|
["components", "schemas", "CompletionRequest", "properties", "debug_options"], \
|
|
["components", "schemas", "CompletionResponse", "properties", "debug_data"], \
|
|
["components", "schemas", "DebugData"], \
|
|
["components", "schemas", "DebugOptions"], \
|
|
["components", "schemas", "ServerSetting"] \
|
|
])' | jq '.servers[0] |= { url: "https://playground.app.tabbyml.com", description: "Playground server" }' \
|
|
> website/static/openapi.json
|
|
|
|
update-graphql-schema:
|
|
cargo run --package tabby-schema --example update-schema --features=schema-language
|