aboutsummaryrefslogblamecommitdiffstats
path: root/Makefile
blob: bbe779caf0a6ac6c574495ef9988931013eeef73 (plain) (tree)
1
2
3
4
5
6
7
8
9
10

          
      






                                       


                     


                                    
                          
all: build

build:
	go generate
	go build -tags=deploy_build .

install:
	go generate
	go install -tags=deploy_build .

test: build
	go test ./...

webui:
	npm run --prefix webui build

.PHONY: build install test