Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 503 Bytes

README.md

File metadata and controls

26 lines (17 loc) · 503 Bytes

Clean Todo

This is a playground for experimenting with the concepts of the Clean Architecture.

Running the apps

Spark app

./gradlew -PmainClass=io.vocidelcodice.todo.apps.spark.SparkApp execute

Servlet app

./gradlew -PmainClass=io.vocidelcodice.todo.apps.servlet.ServletApp execute

Console app

If <a-todo-id> is an integer id:

./gradlew assemble
java -cp app/build/libs/app.jar io.vocidelcodice.todo.apps.console.ConsoleApp <a-todo-id>