From 4644d388c5309781a801a675c5a4fc8b90f4b372 Mon Sep 17 00:00:00 2001 From: Sylvain Pillet Date: Mon, 19 Aug 2019 16:13:58 +0200 Subject: [PATCH] feature/new-readme Adding a readme to the project todo: install dependencies / usage --- README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..d5da12a --- /dev/null +++ b/README.md @@ -0,0 +1,21 @@ +# todoSpring +A todolist rest api to test Spring. This project demonstrate how to start a simple REST API with Spring. + +## Dependencies +This project use gradle as dependencies manager. +Here are the mainly used dependencies. + +### org.springframework.boot + +Main framework + +### org.projectlombok:lombok + +Lombok simplifies repetitive coding concept such as: Getter/Setters, toString functions... Using annotations. + +### com.h2database:h2 + +This project use H2 to simulate a database. + +## Licence +This project is [MIT](https://opensource.org/licenses/MIT) licenced