Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gbrayhan/microservices-go
Golang Microservice Boilerplate using MySQL, Docker and Swagger, API REST. Gin Go and GORM with pagination and implementation of a Clean Architecture.
https://github.com/gbrayhan/microservices-go
boilerplate boilerplate-go boilerplate-golang boilerplate-microservice clean-architecture docker gin go golang golang-examples gorm hexagonal-architecture jwt microservices-architecture pagination rest-api swagger
Last synced: 25 days ago
JSON representation
Golang Microservice Boilerplate using MySQL, Docker and Swagger, API REST. Gin Go and GORM with pagination and implementation of a Clean Architecture.
- Host: GitHub
- URL: https://github.com/gbrayhan/microservices-go
- Owner: gbrayhan
- License: mit
- Created: 2020-02-14T00:14:43.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-08-28T13:32:17.000Z (2 months ago)
- Last Synced: 2024-10-01T01:01:27.378Z (about 1 month ago)
- Topics: boilerplate, boilerplate-go, boilerplate-golang, boilerplate-microservice, clean-architecture, docker, gin, go, golang, golang-examples, gorm, hexagonal-architecture, jwt, microservices-architecture, pagination, rest-api, swagger
- Language: Go
- Homepage:
- Size: 413 KB
- Stars: 487
- Watchers: 4
- Forks: 64
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
# Golang Microservices Boilerplate - Clean Architecture
[![issues](https://img.shields.io/github/issues/gbrayhan/microservices-go)](https://github.com/gbrayhan/microservices-go/tree/master/.github/ISSUE_TEMPLATE)
[![forks](https://img.shields.io/github/forks/gbrayhan/microservices-go)](https://github.com/gbrayhan/microservices-go/network/members)
[![stars](https://img.shields.io/github/stars/gbrayhan/microservices-go)](https://github.com/gbrayhan/microservices-go/stargazers)
[![license](https://img.shields.io/github/license/gbrayhan/microservices-go)](https://github.com/gbrayhan/microservices-go/tree/master/LICENSE)
[![CodeFactor](https://www.codefactor.io/repository/github/gbrayhan/microservices-go/badge/main)](https://www.codefactor.io/repository/github/gbrayhan/microservices-go/overview/main)
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/6c10cc49928447f38952edaab67a94a4)](https://www.codacy.com/gh/gbrayhan/microservices-go/dashboard?utm_source=github.com&utm_medium=referral&utm_content=gbrayhan/microservices-go&utm_campaign=Badge_Grade)Example structure to start a microservices project with golang. Using a MySQL databaseSQL. Using a Hexagonal
Architecture tha is a Clean Architecture.## Manual Installation
If you would still prefer to do the installation manually, follow these steps:
Clone the repo:
```bash
git clone https://github.com/gbrayhan/microservices-go
```If you need, configure the environment variables in file config.json, if you use docker-compose leave the variables set
in the file config.json.example```bash
cp config.json.example config.json
```**TL;DR command list**
git clone https://github.com/gbrayhan/microservices-go
cd microservices-go
cp config.json.example config.json
docker-compose up --build -d## Table of Contents
- [Features](#features)
- [Commands](#commands)
- [Environment Variables](#environment-variables)
- [Project Structure](#project-structure)
- [API Documentation](#api-documentation)
- [Error Handling](#error-handling)
- [Validation](#validation)
- [Linting](#linting)## Features
- **Golang v1.21**: Stable version of go
- **Framework**: A stable version of [gin-go](https://github.com/gin-gonic/gin)
- **Token Security**: with [JWT](https://jwt.io)
- **SQL databaseSQL**: [MariaDB](https://mariadb.org/) using internal sql package of
go [sql](https://golang.org/pkg/databaseSQL/sql/)
- **Testing**: unit and integration tests using package of go [testing](https://golang.org/pkg/testing/)
- **API documentation**: with [swaggo](https://github.com/swaggo/swag) @latest version that is a go implementation
of [swagger](https://swagger.io/)
- **Dependency management**: with [go modules](https://golang.org/ref/mod)
- **Environment variables**: using [viper](https://github.com/spf13/viper)
- **Docker support**
- **Code quality**: with [CodeFactor](https://www.codefactor.io/) and [Codacy](https://www.codacy.com/)
- **Linting**: with [golangci-lint](https://golangci-lint.run/usage/install/) an implementation of a Golang linter## Commands
### Build and run image of docker
```bash
docker-compose up --build -d
```### Swagger Implementation
```bash
swag init -g src/infrastructure/rest/routes/routes.go
```To visualize the swagger documentation on local use
http://localhost:8080/v1/swagger/index.html
To see the postman collection use
https://www.postman.com/kts-mexico/workspace/boilerplategomicroservice### Unit test command
```bash
# run recursive test
go test ./test/unit/...
# clean go test results in cache
go clean -testcache
```### Lint inspection of go
```bash
golangci-lint run ./...
```