TodoManagement

Logo

Simple To-Do List

To build a simple To-Do List with functionality for creating, updating, and deleting tasks, here’s a high-level overview of the steps:

Here’s what it does:

Tech Stack

Run Locally

   git clone https://github.com/makarandhinge/TodoManagement.git
  cd backend
  java -version

# Database Configuration
spring.datasource.url=jdbc:postgresql://localhost:5432/<database_name>
spring.datasource.username=<db_username>
spring.datasource.password=<db_password>

  ./mvnw clean install
  ./mvnw spring-boot:run

The backend should now be running on http://localhost:8080.