Skip to content
/ go-fiber-starter Public template

Simple and scalable starter kit to build powerful and organized REST projects with Fiber.

License

Notifications You must be signed in to change notification settings

bangadam/go-fiber-starter

Repository files navigation

Go Fiber Starter

 

Go Fiber Starter

Github top language Github language count Repository size License Github issues Github forks Github stars

About   |   Features   |   Technologies   |   Requirements   |   Starting   |   License   |   Author


🎯 About

Simple and scalable starter kit to build powerful and organized REST projects with Fiber.

✨ Features

  • Logging
  • Repository Pattern
  • ORM database with Gorm
  • Mocking with GoMock
  • Api documentation with Swaggo
  • Support JWT authentication
  • Containerization with Docker compose
  • Unit testing with testify
  • CI\CD with Github Actions

🚀 Technologies

The following tools were used in this project:

✅ Requirements

Before starting 🏁, you need to have Git, Go, Docker and PostgreSQL installed.

🏁 Starting

# Clone this project
$ git clone https://github.com/bangadam/go-fiber-starter

# Access
$ cd go-fiber-starter

# Download dependencies
$ go get -v ./...

# Run the project
$ go run cmd/example/main.go

# The server will initialize in the <http://{host}:{port}>

📝 License

This project is under license from MIT. For more details, see the LICENSE file.

Made with ❤️ by bangadam.dev

 

Back to top