mirror of
https://github.com/datarhei/core.git
synced 2025-10-04 15:42:57 +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
|
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: Build core (default)
|
||||||
build:
|
build:
|
||||||
CGO_ENABLED=${CGO_ENABLED} GOOS=${GOOS} GOARCH=${GOARCH} go build -o core${BINSUFFIX}
|
CGO_ENABLED=${CGO_ENABLED} GOOS=${GOOS} GOARCH=${GOARCH} go build -o core${BINSUFFIX}
|
||||||
@@ -85,7 +91,7 @@ release_linux:
|
|||||||
docker:
|
docker:
|
||||||
docker build -t core:$(SHORTCOMMIT) .
|
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: Show all commands
|
||||||
help: Makefile
|
help: Makefile
|
||||||
|
Reference in New Issue
Block a user