feat: replace iot adapter with mqtt command pipeline

This commit is contained in:
2026-08-03 13:18:11 +08:00
parent 6ed417c8c1
commit fefdba470a
48 changed files with 1620 additions and 338 deletions

View File

@@ -1,5 +1,7 @@
#!/bin/bash
cd ./backend/api
GOARCH=amd64 GOOS=linux go build -o ../../output/heqiapp ./cmd/main/main.go
set -Eeuo pipefail
mkdir -p ./output
for module in api worker iot-client iot-server; do
(cd "./backend/${module}" && GOARCH=amd64 GOOS=linux go build -o "../../output/${module}" ./cmd/main/main.go)
done