Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 488 Bytes

File metadata and controls

25 lines (16 loc) · 488 Bytes

todo-typescript-clean-architecture

Todo app with clean architecture

Local Development

Run app.

$ docker-compose up

Create todo.

$ curl -X POST -H "Content-Type: application/json" -d '{"name":"test", "memo":"memo", "isDone":true}' localhost:3333/todo

Get todos.

curl -s -X GET http://localhost:3333/todo/

Routing is here.