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:
git clone https://github.com/makarandhinge/TodoManagement.git
cd backend
java -version
If java is not installed, you can follow the installation instructions from here
Configure the Backend
# 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.