Simple REST API for managing tasks built using Java and Spring Boot.
- Create, read, update, and delete (CRUD) tasks
- Stores data in PostgreSQL, can be modified for MySQL
- Tested with Postman
- Java 17
- Spring Boot
- PostgreSQL
- Gradle
- Clone the repo
- Update src/main/resources/application.properties with your PostgreSQL username and password
- Start the backend:
./gradlew bootRun- To start the frontend:
cd frontend
npm install
npm run dev