22 lines
310 B
Makefile
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
|
|
|