Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 594 Bytes

README.md

File metadata and controls

33 lines (22 loc) · 594 Bytes

Go API

A simple Go API following concepts of Domain Driven Design for educational purposes.

Open API specification can be found here

Installation

Clone the repo

$ git clone git@github.com:JustSteveKing/go-api.git
$ cd go-api

Running

Once installed, simply spin up the docker container:

$ docker-compose up -d --build

This will give you a single endpoint for now under: http://localhost:8080/ping which is a healthcheck URL, and will return the following:

{
    "message": "Service Online"
}