init project
Some checks failed
CI / build (push) Failing after 8m49s

This commit is contained in:
2025-11-13 16:53:08 +08:00
commit 937a3cea60
25 changed files with 1858 additions and 0 deletions

16
Makefile Normal file
View File

@@ -0,0 +1,16 @@
.PHONY: build
build:
CGO_ENABLED=0 go build -o application main.go
test:
go test -coverprofile=coverage.out ./...
deps:
go mod tidy
run:
go run main.go server
migrate:
go run main.go migrate
generate:
go generate ./...
check:
CGO_ENABLED=0 go build -o application main.go