rhythm-backend/Makefile
Dmitri cb5d273951
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 1m25s
go
2026-04-19 16:54:12 +02:00

18 lines
238 B
Makefile

.PHONY: help run test fmt
help:
@echo "Targets:"
@echo " run - run API"
@echo " test - run tests"
@echo " fmt - format Go code"
run:
go run ./cmd/api
test:
go test ./...
fmt:
go fmt ./...