/goswagger-todolist

Test project for playing around with go-swagger

Primary LanguageHTML

Go-Swagger To Do List API

A To Do List API built with go-swagger.

Also includes a basic UI built with Bootstrap 4 and VueJS.

Dependencies

brew install go dep

Code Generation

The server code is built from the swagger spec file using go-swagger and all generated code is put in a folder gen.

dep ensure
make swagger

Running

go run main.go --port 3000
http :3000/api/
http :3000/api/ description="Do some stuff" completed:=true
http :3000/api/ description="Do some more stuff" completed:=false

Web UI available at http://localhost:3000/.