Files
databasus/backend/Makefile

21 lines
338 B
Makefile

run:
go run cmd/main.go
test:
go test -p=1 -count=1 -failfast -timeout 15m ./internal/...
lint:
golangci-lint fmt ./cmd/... ./internal/... && golangci-lint run ./cmd/... ./internal/...
migration-create:
goose create $(name) sql
migration-up:
goose up
migration-down:
goose down
swagger:
swag init -g ./cmd/main.go -o swagger