The purpose of the application is to give the user a nice journaling and notetaking experience and manage their tasks.
This repository is organized as a simple two-part todo application:
backend/contains the Spring Boot REST API.frontend/contains the browser UI that calls that API.
picxy/
backend/
frontend/
From backend/:
.\mvnw.cmd spring-boot:run- Spring Boot REST API
- H2 in-memory database
- Todo entity, repository, service, controller, and DTO packages
From frontend/:
python -m http.server 5500Then open http://localhost:5500.
- The old PDF/image placeholder content was replaced with a todo app.
- The frontend talks to the backend at
http://localhost:8080/api/todos. - Start the backend first if you want the frontend actions to work.