You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
include ./hack/hack-cli.mk
# Update GoFrame and its CLI to latest stable version.
.PHONY: up up: cli.install @gf up -a
# Build binary using configuration from hack/config.yaml.
.PHONY: build build: cli.install @gf build -ew
# Parse api and generate controller/sdk.
.PHONY: ctrl ctrl: cli.install @gf gen ctrl --srcFolder './app/api' --dstFolder './app/controller'
# Generate Go files for DAO/DO/Entity.
.PHONY: dao dao: cli.install @gf gen dao
# Parse current project go files and generate enums go file.
.PHONY: enums enums: cli.install @gf gen enums
# Generate Go files for Service.
.PHONY: service service: cli.install @gf gen service --srcFolder './app/logic' --dstFolder './app/service'
# Build docker image.
.PHONY: image image: cli.install $(eval _TAG = $(shell git describe --dirty --always --tags --abbrev=8 --match 'v*' | sed 's/-/./2' | sed 's/-/./2')) ifneq (, $(shell git status --porcelain 2>/dev/null)) $(eval _TAG = $(_TAG).dirty) endif $(eval _TAG = $(if ${TAG}, ${TAG}, $(_TAG))) $(eval _PUSH = $(if ${PUSH}, ${PUSH}, )) @gf docker ${_PUSH} -tn $(DOCKER_NAME):${_TAG};
# Build docker image and automatically push to docker repo.
.PHONY: image.push image.push: @make image PUSH=-p;
# Deploy image and yaml to current kubectl environment.
.PHONY: deploy deploy: $(eval _TAG = $(if ${TAG}, ${TAG}, develop))
@set -e; \
mkdir -p $(ROOT_DIR)/temp/kustomize;\
cd $(ROOT_DIR)/manifest/deploy/kustomize/overlays/${_ENV};\
kustomize build > $(ROOT_DIR)/temp/kustomize.yaml;\
kubectl apply -f $(ROOT_DIR)/temp/kustomize.yaml; \
if [ $(DEPLOY_NAME) != "" ]; then \
kubectl patch -n $(NAMESPACE) deployment/$(DEPLOY_NAME) -p "{\"spec\":{\"template\":{\"metadata\":{\"labels\":{\"date\":\"$(shell date +%s)\"}}}}}"; \
fi;
# Parsing protobuf files and generating go files.
.PHONY: pb pb: cli.install @gf gen pb
# Generate protobuf files for database tables.
.PHONY: pbentity pbentity: cli.install @gf gen pbentity
|