1 Star 0 Fork 0

qiaogy91/mcdb

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Makefile 768 Bytes
一键复制 编辑 原始数据 按行查看 历史
qiaogy91 提交于 2024-07-26 20:55 . 完成sync resource api
PROJECT_SRC := "./" # main.go 所在目录
PROJECT_NAME := "mcenter"
PROJECT_REPO := "gitee.com/qiaogy91/mcenter/"
.PHONY: dep build clean gen
all: clean gen dep build
dep:
@go mod tidy
build: dep
@GOOS=linux GOARCH=amd64 go build -o build/${PROJECT_NAME}-linux-x86_64 ${PROJECT_SRC}
@GOOS=darwin GOARCH=amd64 go build -o build/${PROJECT_NAME}-darwin-x86_64 ${PROJECT_SRC}
@GOOS=windows GOARCH=amd64 go build -o build/${PROJECT_NAME}-windows-x86_64.exe ${PROJECT_SRC}
clean:
@rm -fr build/*
gen:
@protoc -I=./ --go_out=. --go-grpc_out=. --go_opt=module="gitee.com/qiaogy91/mcdb" --go-grpc_opt=module="gitee.com/qiaogy91/mcdb" apps/*/pb/*.proto
@protoc-go-inject-tag -input="apps/*/*.pb.go"
run:
@go run main.go start -t file -f etc/conf.toml || true
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/qiaogy91/mcdb.git
git@gitee.com:qiaogy91/mcdb.git
qiaogy91
mcdb
mcdb
master

搜索帮助