A basic todo system architected around event sourcing techniques :)
Make sure you have Docker and Docker Compose installed.
$ make install # install all dependencies
$ make run # run server on :port 3000
$ make run.watch # run server and reloads on changes
$ make test # runs all tests
$ make test.watch # runs tests in watch mode
$ make coverage # runs code coverage
$ make lint # runs eastwood linter
$ make format # runs cljfmt code formatter
$ make analyze # runs kibit static analysis
$ make pre.commit # runs lint, format and analyze