Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 435 Bytes

README.md

File metadata and controls

17 lines (12 loc) · 435 Bytes

TODO Microservice

A simple todo backend. Built to practice go and have a backend from creating todo applications when testing out new front-end frameworks.

The app is hard-coded to use port 8080.

Run scripts/gen-api.sh before building the docker image if making changes to the API.

Build the image:

docker build -f ./DOCKERFILE  -t behlers/todo-app .

Run the image:

docker run -p 8080:8080 behlers/todo-app