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.
		
		
		
	
	
		
		
			
	
    
		
			
				
					
						|                                                                           |  | .DEFAULT_GOAL := build
# Update GoFrame and its CLI to latest stable version.
.PHONY: upup: cli.install	@gf up -a
# Build binary using configuration from hack/config.yaml.
.PHONY: buildbuild: cli.install	@gf build -ew
# Parse api and generate controller/sdk.
.PHONY: ctrlctrl: cli.install	@gf gen ctrl
# Generate Go files for DAO/DO/Entity.
.PHONY: daodao: cli.install	@gf gen dao
# Parse current project go files and generate enums go file.
.PHONY: enumsenums: cli.install	@gf gen enums
# Generate Go files for Service.
.PHONY: serviceservice: cli.install	@gf gen service
# Build docker image.
.PHONY: imageimage: cli.install	$(eval _TAG  = $(shell git rev-parse --short HEAD))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.pushimage.push: cli.install	@make image PUSH=-p;
# Deploy image and yaml to current kubectl environment.
.PHONY: deploydeploy: cli.install	$(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: pbpb: cli.install	@gf gen pb
# Generate protobuf files for database tables.
.PHONY: pbentitypbentity: cli.install	@gf gen pbentity
 |