Spring Boot Todo

A simple spring boot todo backend application that enables you to manage your todos

Testing

Get the project on your pc:

  git clone https://github.com/jazzybruno/spring-boot-todo.git

Run the program to install maven

 mvn install 

Add your database in the application.properties

spring.datasource.url=jdbc:mysql://localhost:3306/{your_database_name}
spring.datasource.username={your_username}
spring.datasource.password={your_password}

Then after installation of packages and adding your data run the application and go to :

http://localhost:8000/swagger-ui.html

you can edit the port if you wish : go to applcation.properties and add the port configuration

server.port = {the_port_you_choose}

You should get a page like this: Screenshot  2023-02-18 130829.png