This repository is a skeleton for building production ready Go REST API.
In this repo, we used gorilla/mux
with almost pure Go.
Run development container:
$ docker-compose up
Build production image:
$ docker build -t fptu-api .
Run production container:
$ docker run -d --name fptu-api -p 5001:3000 fptu-api:latest
You may found the example environment configuration file at .env.example
.