Skip to content

Latest commit

 

History

History
54 lines (36 loc) · 1.12 KB

File metadata and controls

54 lines (36 loc) · 1.12 KB

Go Template

License codecov Go Report Card Go Reference

A simple Go template for new projects.

Prerequisites

🚀 Getting Started

Clone the repository and initialize a new module to try the template locally.

git clone <repo-url>
cd <repo-folder>
go mod init <module-path>

📝 Usage

Initialize the module

go mod tidy

Add a dependency

go get example.com/awesome-lib@latest

Build your project

go build ./...

Run your project

go run ./<project>

Test your project

go test ./...