mirror of
https://github.com/warp-tech/warpgate.git
synced 2024-11-10 09:12:56 +08:00
39 lines
1.2 KiB
Makefile
39 lines
1.2 KiB
Makefile
projects := "warpgate warpgate-admin warpgate-common warpgate-db-entities warpgate-db-migrations warpgate-database-protocols warpgate-protocol-ssh warpgate-protocol-mysql warpgate-protocol-http warpgate-core warpgate-sso"
|
|
|
|
run *ARGS:
|
|
RUST_BACKTRACE=1 cargo run --all-features -- --config config.yaml {{ARGS}}
|
|
|
|
fmt:
|
|
for p in {{projects}}; do cargo fmt -p $p -v; done
|
|
|
|
fix *ARGS:
|
|
for p in {{projects}}; do cargo fix --all-features -p $p {{ARGS}}; done
|
|
|
|
clippy *ARGS:
|
|
for p in {{projects}}; do cargo cranky --all-features -p $p {{ARGS}}; done
|
|
|
|
test:
|
|
for p in {{projects}}; do cargo test --all-features -p $p; done
|
|
|
|
yarn *ARGS:
|
|
cd warpgate-web && yarn {{ARGS}}
|
|
|
|
migrate *ARGS:
|
|
cargo run --all-features -p warpgate-db-migrations -- {{ARGS}}
|
|
|
|
lint:
|
|
cd warpgate-web && yarn run lint
|
|
|
|
svelte-check:
|
|
cd warpgate-web && yarn run check
|
|
|
|
openapi-all:
|
|
cd warpgate-web && yarn openapi:schema:admin && yarn openapi:schema:gateway && yarn openapi:client:admin && yarn openapi:client:gateway
|
|
|
|
openapi:
|
|
cd warpgate-web && yarn openapi:client:admin && yarn openapi:client:gateway
|
|
|
|
cleanup: (fix "--allow-dirty") (clippy "--fix" "--allow-dirty") fmt svelte-check lint
|
|
|
|
udeps:
|
|
cargo udeps --all-features --all-targets
|