Skip to content

bolanosdev/cookiecuter-go-gin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

About

This project is a Cookiecutter template for quickly spinning up a Go microservice.

Pending

  • GH Actions
  • PGX
  • Telemetry
  • Metrics
  • Logging

Getting Started

Prequisites

  • Cookiecutter
  • Go
  • Docker
  • Golangci-lint
  • Go Migrate
  • SQLC

Creating a new project

1.) From the root of your project workspaces, run:

cookiecutter git@github.com:bolanosdev/cookiecutter-go-gin.git

2.) Follow the prompts - if you're just trying it out, just use the defaults. For more info, see Project Options below.

$ group_name [company.com]
$ project_descriptionname [example_service]:
$ project_description [A brief overview of your service.]:
$ go_module [company.com/example-service]:
$ go_version [1.23]:
$ docker_base_image [gcr.io/distroless/base]:
$ namespace [default]:

3.) Change directores to the project that was created and run the following:

cd ~/path/to/example-service
go mod tidy
go mod vendor
make run OR `make build && docker-compose up

4.) The application and e2e test should exit successfully.

Project Options

Option Details
project_name This is the name of your project. If you use multiple words, make it spinal-case. (e.g. example-service)
project_description This is a description of your project - short and sweet works here.
go_module This is the go module. This will be auto-generated from your project name and project slug.
go_version This is the version of Go we want to use. Defaults to 1.15.
docker_image This is the base docker image to use when creating the project (excluding the hostname). Defaults to buster.
namespace The Kubernetes namespace

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published