Skip to content

azeem225/TodoList-app

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Todo REST API

The following is simple todo REST API using the Spring Boot Framework. The API allow you to add item to a to-do list, update, select and remove from the list.

Concepts used in this Application

Usage

  • Make sure you have java JDK and Maven installed
  • Make sure you have a Mysql server running.
  • Create a database with the following name: todo_db, you can modify it in the application.properties file with this line: spring.datasource.url=jdbc:mysql://localhost:3306/todo_db?autoReconnect=true&
  • Modify the username and pawsord in the file mention above with this line: spring.datasource.username=testUsername spring.datasource.password=testpasword
  • Run the application using your preferred IDE (IntelliJ, STS)

Application Demo with Postman:

Todo list :

Demo screen postman

Add Item

Demo screen postman

Update item

Demo screen postman

Delete item

Demo screen postman

Demo screen postman

Releases

No releases published

Packages

No packages published

Languages

  • Java 37.2%
  • JavaScript 27.1%
  • CSS 23.8%
  • HTML 11.9%