Skip to content

Commit 600a518

Browse files
committed
chore: remove test config toto.json + delegate vio-edge-local-up to service Makefiles
- Delete edge/orchestrator/config/toto.json (test artifact) - vio-edge-local-up now calls $(MAKE) -C <service> serve instead of inlining commands — each service owns its own startup logic
1 parent 25b5eca commit 600a518

3 files changed

Lines changed: 4 additions & 9 deletions

File tree

.github/workflows/ci_edge_cockpit.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,6 @@ jobs:
3333
run: make install
3434
working-directory: ./edge/cockpit
3535

36-
- name: Lint with ESLint
37-
run: make lint
38-
working-directory: ./edge/cockpit
39-
4036
- name: TypeScript type check
4137
run: make type_check
4238
working-directory: ./edge/cockpit

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,10 @@ install-tools:
5454
vio-edge-local-up:
5555
lsof -ti :8000 -ti :8001 -ti :8501 -ti :3000 | xargs kill -9 2>/dev/null || true
5656
trap 'kill 0' SIGINT SIGTERM
57-
CAMERA_CONFIG_FILE=$(PWD)/edge/camera/camera_config.yml uv run --project edge/camera edge_camera &
58-
MODELS_PATH=$(PWD)/edge/model_serving/models uv run --project edge/model_serving/tflite_serving edge_model_serving &
59-
CONFIG_DIR=$(PWD)/edge/orchestrator/config CAMERA_SERVICE_URL=http://localhost:8001 SERVING_MODEL_URL=http://localhost:8501 uv run --project edge/orchestrator edge_orchestrator &
60-
cd edge/cockpit && npm run dev &
57+
CAMERA_CONFIG_FILE=$(PWD)/edge/camera/camera_config.yml $(MAKE) -C edge/camera serve &
58+
MODELS_PATH=$(PWD)/edge/model_serving/models $(MAKE) -C edge/model_serving/tflite_serving serve &
59+
CAMERA_SERVICE_URL=http://localhost:8001 SERVING_MODEL_URL=http://localhost:8501 CONFIG_DIR=$(PWD)/edge/orchestrator/config $(MAKE) -C edge/orchestrator serve &
60+
$(MAKE) -C edge/cockpit serve &
6161
wait
6262

6363
.PHONY: vio-down ## ❌ Stop all services (model_serving, edge_orchestrator, ui)

edge/orchestrator/config/toto.json

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)