feat: simplify SOP to immediate-effect configuration

This commit is contained in:
Eric 1549169735@qq.com
2026-08-18 16:27:02 +08:00
parent c5ab886b70
commit 8de48fb05e
150 changed files with 6764 additions and 1626 deletions

View File

@@ -1,6 +1,7 @@
WEB_DIR := web
SDK_DIR := sdk
.PHONY: web-install web-build build test vet check seed-pet-doctor docker-config docker-up docker-down docker-logs
.PHONY: web-install web-build sdk-install sdk-build build test vet check seed-pet-doctor docker-config docker-up docker-down docker-logs
web-install:
cd $(WEB_DIR) && npm install
@@ -8,7 +9,13 @@ web-install:
web-build:
cd $(WEB_DIR) && npm run build
build: web-build
sdk-install:
cd $(SDK_DIR) && npm install
sdk-build:
cd $(SDK_DIR) && npm run build
build: web-build sdk-build
go build -o bin/iqudo-top1 .
test: