Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.17 KB

README.md

File metadata and controls

31 lines (23 loc) · 1.17 KB

todo-backend

This is an implementation of Todo-Backend using the next generation of releases of the Typelevel stack of Scala libraries.

The following libraries are used:

Running tests

To run the default tests for Todo-Backend, you will need a running database. This can be handled by docker by running the following:

docker run --rm -d -p 5432:5432 --name todo-backend-postgres postgres:alpine

This project is built using mill.

To run the server call mill todo.run. To automatically restart the server on code changes, call mill --watch todo.runBackground.

Finally, visit http://www.todobackend.com/specs/index.html?http://localhost:8080/todos/ to run the test suite on your local server.