core/platform-projects-core/Makefile
2025-12-27 15:49:10 -03:00

22 lines
310 B
Makefile

APP_NAME=platform-projects-core
.PHONY: run
run:
go run ./cmd/api
.PHONY: lint
lint:
golangci-lint run ./...
.PHONY: test
test:
go test ./...
.PHONY: migrate
migrate:
migrate -path internal/db/migrations -database "$${DATABASE_DSN}" up
.PHONY: sqlc
sqlc:
sqlc generate -f internal/db/sqlc/sqlc.yaml