Exploring Go with Gin by building a scalable backend ecosystem featuring API microservices, multi-database support, caching, testing, comprehensive documentation, and more.
- Built using Gin Web Framework.
- Multi-database support (currently MongoDB).
- Modular architecture for scalability.
- Includes Makefile for streamlined development, testing, and building.
- Go (version 1.20 or later recommended)
- MongoDB (running locally or accessible via the provided
DB_URL
)
Create a .env
file in the root directory and add the following:
DB_URL="mongodb://localhost:27017/"
DB_NAME="go-admin"