feat: implement scenario-driven sales SOP platform
This commit is contained in:
20
codes/Makefile
Normal file
20
codes/Makefile
Normal 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
|
||||
Reference in New Issue
Block a user