1 Star 0 Fork 2

ApulisPlatform/file-server

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Makefile 708 Bytes
一键复制 编辑 原始数据 按行查看 历史
zjupigeon 提交于 2021-08-13 19:00 . feat(tusd): support tusd
PKG=github.com/apulis/bmod/file-server
IMAGE?=apulistech/file-server
GIT_COMMIT?=$(shell git rev-parse --short HEAD)
GIT_BRANCH ?= $(shell git rev-parse --abbrev-ref HEAD)
BUILD_DATE?=$(shell date -u +"%Y-%m-%dT%H:%M:%SZ")
LDFLAGS?="-X ${PKG}/cmd.gitCommit=${GIT_COMMIT} -X ${PKG}/cmd.buildDate=${BUILD_DATE}"
GO111MODULE=on
GOPROXY=https://goproxy.io
GOPATH=$(shell go env GOPATH)
.EXPORT_ALL_VARIABLES:
.PHONY: build
build:
mkdir -p bin
GOOS=linux go build -ldflags ${LDFLAGS} -buildmode=pie -o bin/file-server main.go
.PHONY: verify
verify:
./hack/verify-all
.PHONY: test
test:
go test -v -race ./pkg/...
.PHONY: image
image:
docker build -t $(IMAGE):${GIT_BRANCH}-${GIT_COMMIT} -f Dockerfile .
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/apulisplatform/file-server.git
git@gitee.com:apulisplatform/file-server.git
apulisplatform
file-server
file-server
v1.6.0

搜索帮助