The project provides a basic setup for writing web services in Go.
It uses the following external dependencies.
The project can be run either as a native application on your system or as a container using the provided Docker file.
$ export APP_STAGE=local
$ export APP_PORT=8080
$ go run .
$ docker build . -t go-webservice-starter:latest
$ docker run -d -p 8080:8080 -e APP_STAGE=local -e APP_PORT=8080 go-webservice-starter:latest