1 Star 0 Fork 16

memcacheon/Dev Lake

forked from Merico/DevLake 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Makefile 844 Bytes
一键复制 编辑 原始数据 按行查看 历史
# NOTE: you have to use tabs in this file for make. Not spaces.
# https://stackoverflow.com/questions/920413/make-error-missing-separator
# https://tutorialedge.net/golang/makefiles-for-go-developers/
hello:
echo "Hello"
build-plugin:
@sh scripts/compile-plugins.sh
build: build-plugin
go build -o bin/lake
dev: build
bin/lake
run:
go run main.go
configure:
docker-compose up config-ui
configure-dev:
cd config-ui; npm start;
compose:
docker-compose up grafana
compose-down:
docker-compose down
commit:
git cz
install:
go clean --modcache
go get
test: unit-test e2e-test
unit-test: build
go test -v $$(go list ./... | grep -v /test/)
e2e-test: build
PLUGIN_DIR=$(shell readlink -f bin/plugins) go test -v ./test/...
lint:
golangci-lint run
clean:
@rm -rf bin
restart:
docker-compose down; docker-compose up -d
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/memcacheon/lake.git
git@gitee.com:memcacheon/lake.git
memcacheon
lake
Dev Lake
main

搜索帮助