1 Star 0 Fork 0

Chanvi/console

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Makefile 994 Bytes
一键复制 编辑 原始数据 按行查看 历史
# Copyright 2021 The KubeSphere Authors. All rights reserved.
# Use of this source code is governed by a AGPL-3.0 license
# that can be found in the LICENSE file.
REPO?=kubespheredev
TAG?=$(shell git rev-parse --abbrev-ref HEAD | sed -e 's/\//-/g')
.PHONY: all
all: test build serve
help: ## Show this help.
@grep -hE '^[ a-zA-Z0-9_-]+:.*?## .*$$' $(MAKEFILE_LIST) | \
awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-23s\033[0m %s\n", $$1, $$2}'
test: ## Run tests suite.
yarn test
build: ## Build
yarn build
serve: ## Run console on port :8000
npm run serve
container: ## Build the container image
DRY_RUN=true TAG=${TAG} hack/docker_build.sh
container-push: ## Build the container and push
TAG=${TAG} hack/docker_build.sh
container-cross: ## Build the container for multiple platforms(currently linux/amd64,linux/arm64)
DRY_RUN=true hack/docker_build_multiarch.sh
container-cross-push: ## Build the container for multiple platforms and push
hack/docker_build_multiarch.sh
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/chanvi/console.git
git@gitee.com:chanvi/console.git
chanvi
console
console
master

搜索帮助