feat: simplify SOP to immediate-effect configuration
This commit is contained in:
11
Makefile
11
Makefile
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user