https://github.com/devantler-tech/go-template
A simple Go template for new projects.
https://github.com/devantler-tech/go-template
template
Last synced: 3 months ago
JSON representation
A simple Go template for new projects.
- Host: GitHub
- URL: https://github.com/devantler-tech/go-template
- Owner: devantler-tech
- License: apache-2.0
- Created: 2025-09-27T13:13:12.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2026-01-06T20:10:51.000Z (3 months ago)
- Last Synced: 2026-01-09T07:25:14.537Z (3 months ago)
- Topics: template
- Language: Go
- Size: 28.3 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Go Template
[](https://opensource.org/licenses/Apache-2.0)
[](https://github.com/devantler-tech/go-template/actions/workflows/test.yaml)
[](https://codecov.io/gh/devantler-tech/go-template)
[](https://goreportcard.com/report/github.com/devantler-tech/go-template)
[](https://pkg.go.dev/github.com/devantler-tech/go-template)
A simple Go template for new projects.
## Prerequisites
- [Go](https://golang.org/dl/)
## 🚀 Getting Started
Clone the repository and initialize a new module to try the template locally.
```bash
git clone
cd
go mod init
```
## 📝 Usage
### Initialize the module
```bash
go mod tidy
```
### Add a dependency
```bash
go get example.com/awesome-lib@latest
```
### Build your project
```bash
go build ./...
```
### Run your project
```bash
go run ./
```
### Test your project
```bash
go test ./...
```