Files
soul-yongping/soul-api/Makefile

10 lines
174 B
Makefile
Raw Normal View History

# 开发:热重载(需先安装 air: go install github.com/air-verse/air@latest
dev:
air
# 普通运行(无热重载)
run:
go run ./cmd/server
.PHONY: dev run