Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initial version of Catalog Service #725

Open
wants to merge 11 commits into
base: main
Choose a base branch
from
Prev Previous commit
Next Next commit
add Makefile checks for model catalog service
Signed-off-by: Dhiraj Bokde <[email protected]>
dhirajsb committed Jan 22, 2025

Verified

This commit was signed with the committer’s verified signature.
dhirajsb Dhiraj Bokde
commit 0a045108a251a499d3e067138f691bcbda108b6a
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -95,9 +95,9 @@ openapi/validate: bin/openapi-generator-cli

# generate the openapi server implementation
.PHONY: gen/openapi-server
gen/openapi-server: bin/openapi-generator-cli openapi/validate internal/server/openapi/api_model_registry_service.go
gen/openapi-server: bin/openapi-generator-cli openapi/validate internal/server/openapi/api_model_registry_service.go internal/server/openapi/api_model_catalog_service.go

internal/server/openapi/api_model_registry_service.go: bin/openapi-generator-cli api/openapi/model-registry.yaml
internal/server/openapi/api_model_%_service.go: bin/openapi-generator-cli api/openapi/model-registry.yaml
ROOT_FOLDER=${PROJECT_PATH} ./scripts/gen_openapi_server.sh

# generate the openapi schema model and client