mirror of
https://github.com/datarhei/core.git
synced 2025-09-26 20:11:29 +08:00
Add init command
This commit is contained in:
8
Makefile
8
Makefile
@@ -6,6 +6,12 @@ BINSUFFIX := $(shell if [ "${GOOS}" -a "${GOARCH}" ]; then echo "-${GOOS}-${GOAR
|
||||
|
||||
all: build
|
||||
|
||||
## init: Install required apps
|
||||
init:
|
||||
go install honnef.co/go/tools/cmd/staticcheck@latest
|
||||
go install github.com/swaggo/swag/cmd/swag@latest
|
||||
go install github.com/99designs/gqlgen@latest
|
||||
|
||||
## build: Build core (default)
|
||||
build:
|
||||
CGO_ENABLED=${CGO_ENABLED} GOOS=${GOOS} GOARCH=${GOARCH} go build -o core${BINSUFFIX}
|
||||
@@ -85,7 +91,7 @@ release_linux:
|
||||
docker:
|
||||
docker build -t core:$(SHORTCOMMIT) .
|
||||
|
||||
.PHONY: help build swagger test vet fmt vendor commit coverage lint release import update
|
||||
.PHONY: help init build swagger test vet fmt vendor commit coverage lint release import update
|
||||
|
||||
## help: Show all commands
|
||||
help: Makefile
|
||||
|
Reference in New Issue
Block a user