feat: implement scenario-driven sales SOP platform

This commit is contained in:
Eric 1549169735@qq.com
2026-08-06 21:37:29 +08:00
parent 254469ab89
commit de5345607a
84 changed files with 7132 additions and 2 deletions

20
codes/Makefile Normal file
View File

@@ -0,0 +1,20 @@
WEB_DIR := web
.PHONY: web-install web-build build test vet check
web-install:
cd $(WEB_DIR) && npm ci
web-build:
cd $(WEB_DIR) && npm run build
build: web-build
go build -o bin/iqudo-top1 .
test:
go test ./...
vet:
go vet ./...
check: test vet