1
0
Fork 0
mirror of https://github.com/MedzikUser/go-cdn synced 2024-08-15 03:19:36 +00:00
go-cdn/Makefile
Medzik c77de68966 Simple Changes
- Added github workflows and dependabot
- Added goreleaser
- The Automatic Update system has been changed
- Changed DB connect from init to Connect()
2021-07-15 10:47:44 +02:00

14 lines
116 B
Makefile

OUT_FILE=cdn.out
build:
go build -o ${OUT_FILE}
run:
go run .
deps:
go get -v
clean:
go clean
rm cdn* dist