Skip to content

Latest commit

 

History

History
38 lines (27 loc) · 423 Bytes

README.md

File metadata and controls

38 lines (27 loc) · 423 Bytes

Get Started

Create Database

docker-compose up -d

Install dependencies

go mod tidy

Run Project

go run cmd/main.go

Run Tests

go test ./...

Test coverage:

go test ./... -coverprofile=coverage.out
go tool cover -html=coverage.out

Run Linter

Check for linting errors (code style, code smells, etc.)

golangci-lint run