You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
devex: add justfiles for bridge and CLI; add cargo-sort to CI (#2425)
This adds justfiles for `bridge` and `svix-cli` (which are basically the
same as the justfile for `server`).
It also adds `cargo-sort` to CI for bridge and svix-cli.
# Generates a new `openapi.json`. Pass `--check` to compare the spec that would be generated to the current version of the file. Make sure to update `codegen/lib-openapi.json` first.
15
+
[no-exit-message]
16
+
generate-openapi:
17
+
bash generate-openapi.sh
18
+
19
+
# Regenerate all client libraries
20
+
[no-exit-message]
21
+
[working-directory(HERE / "..")]
22
+
codegen:
23
+
{{ PYTHON }} regen_openapi.py
24
+
25
+
# Invokes `docker compose` with the testing configuration in the server directory
26
+
[no-exit-message]
27
+
dc*args='':
28
+
docker compose -p svix-oss -f {{ HERE /"testing-docker-compose.yml"}}{{ args }}
0 commit comments