Rename package

This commit is contained in:
Ettore Di Giacinto
2025-02-26 22:51:29 +01:00
parent 43c29fbdb0
commit b66e698b5e
34 changed files with 73 additions and 69 deletions

View File

@@ -4,15 +4,19 @@ IMAGE_NAME?=webui
tests:
$(GOCMD) run github.com/onsi/ginkgo/v2/ginkgo --fail-fast -v -r ./...
webui-nokb:
$(MAKE) webui KBDISABLEINDEX=true
run-nokb:
$(MAKE) run KBDISABLEINDEX=true
.PHONY: webui
webui:
.PHONY: build
build:
$(GOCMD) build -o localagent ./
.PHONY: run
run:
$(GOCMD) run ./
webui-image:
build-image:
docker build -t $(IMAGE_NAME) -f Dockerfile.webui .
webui-push:
image-push:
docker push $(IMAGE_NAME)