2 Star 1 Fork 0

高跃/pangu

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Makefile 857 Bytes
一键复制 编辑 原始数据 按行查看 历史
gaoyue 提交于 2021-04-28 13:39 . up migrate
#定义变量
GOPROXY=https://goproxy.io
GO111MODULE=on
#GOTHIRDPKG=${HOME}/gopkg/third
VERSION=$(shell git describe --abbrev=0 --tags)
COMMIT=$(shell git rev-parse --short HEAD)
.PHONY : fmt
fmt :
@echo "格式化代码"
@gofmt -l -w ./
.PHONY : vendor
vendor :
@echo "创建vendor"
@go mod vendor
@echo "结束vendor"
# 代码风格检查
.PHONY : lint
lint :
@golangci-lint run -v ./...
# 打包
.PHONY : build
build:
@go build -o pangu ./main.go
# 运行
.PHONY : run
run:
@go run ./main.go
# 执行数据库迁移
.PHONY : migrate
migrate :
@go run ./cmd/migrate/run.go migrate
# 重置数据库迁移
.PHONY : migrate_reset
migrate_reset :
@go run ./cmd/migrate/run.go migrate:reset
# 生成数据库迁移 make migrate_make n=create-table-users
.PHONY : migrate_make
migrate_make :
@go run ./cmd/migrate/run.go migrate:make $(n)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/nmggy/pangu.git
git@gitee.com:nmggy/pangu.git
nmggy
pangu
pangu
master

搜索帮助