Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -231,8 +231,8 @@ else
echo -n "Enter choice (default: 2): "; \
read DELETE_VOLUMES_CHOICE; \
export DELETE_VOLUMES_CHOICE; \
fi
@$(MAKE) label-studio-$(INSTALLER)-uninstall DELETE_VOLUMES_CHOICE=$$DELETE_VOLUMES_CHOICE; \
fi; \
$(MAKE) label-studio-$(INSTALLER)-uninstall DELETE_VOLUMES_CHOICE=$$DELETE_VOLUMES_CHOICE; \
$(MAKE) milvus-$(INSTALLER)-uninstall DELETE_VOLUMES_CHOICE=$$DELETE_VOLUMES_CHOICE; \
$(MAKE) deer-flow-$(INSTALLER)-uninstall DELETE_VOLUMES_CHOICE=$$DELETE_VOLUMES_CHOICE; \
$(MAKE) datamate-$(INSTALLER)-uninstall DELETE_VOLUMES_CHOICE=$$DELETE_VOLUMES_CHOICE
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,16 @@ public RouteLocator customRouteLocator(RouteLocatorBuilder builder) {
.route("python-service", r -> r.path("/api/rag/**", "api/models/**")
.uri("http://datamate-backend-python:18000"))

// 数据评估服务路由
.route("data-operator", r -> r.path("/api/operators/**")
.uri("http://datamate-backend-python:18000"))

.route("data-categories", r -> r.path("/api/categories/**")
.uri("http://datamate-backend-python:18000"))

.route("data-cleaning", r -> r.path("/api/cleaning/**")
.uri("http://datamate-backend-python:18000"))

.route("deer-flow-frontend", r -> r.path("/chat/**")
.uri("http://deer-flow-frontend:3000"))

Expand Down
2 changes: 0 additions & 2 deletions backend/openapi/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,6 @@ OPENAPI_DIR="openapi/specs"
SERVICES=(
"data-annotation-service"
"data-management-service"
"operator-market-service"
"data-cleaning-service"
"data-synthesis-service"
"data-evaluation-service"
"pipeline-orchestration-service"
Expand Down
89 changes: 0 additions & 89 deletions backend/services/data-cleaning-service/pom.xml

This file was deleted.

This file was deleted.

Loading
Loading