{"id":19190247,"url":"https://github.com/macktireh/springboottodolist","last_synced_at":"2025-08-08T01:27:25.510Z","repository":{"id":199056890,"uuid":"702056511","full_name":"Macktireh/SpringBootTodolist","owner":"Macktireh","description":"This Spring Boot Todolist application empowers users to manage their tasks and to-do lists. It offers features for creating, updating, and organizing tasks, as well as setting due dates.","archived":false,"fork":false,"pushed_at":"2024-04-17T09:18:57.000Z","size":183,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-23T03:46:40.951Z","etag":null,"topics":["java","maven","postgresql","spring-boot","spring-data-jpa","todolist"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Macktireh.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-10-08T11:16:16.000Z","updated_at":"2025-02-21T17:02:23.000Z","dependencies_parsed_at":"2023-10-13T11:10:31.305Z","dependency_job_id":"22b0c066-fce7-4dbf-94b8-e7d9d13fbf20","html_url":"https://github.com/Macktireh/SpringBootTodolist","commit_stats":null,"previous_names":["macktireh/springboot-todolist"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Macktireh/SpringBootTodolist","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Macktireh%2FSpringBootTodolist","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Macktireh%2FSpringBootTodolist/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Macktireh%2FSpringBootTodolist/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Macktireh%2FSpringBootTodolist/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Macktireh","download_url":"https://codeload.github.com/Macktireh/SpringBootTodolist/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Macktireh%2FSpringBootTodolist/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":260527980,"owners_count":23022861,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["java","maven","postgresql","spring-boot","spring-data-jpa","todolist"],"created_at":"2024-11-09T11:33:29.532Z","updated_at":"2025-06-18T09:35:16.667Z","avatar_url":"https://github.com/Macktireh.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Todolist Application with Spring Boot\n\n![Java](https://img.shields.io/badge/Java-17-red)\n![Spring Boot](https://img.shields.io/badge/Spring%20Boot-3.1.4-green)\n\nThis is a simple Todolist application built with Spring Boot. It allows users to create, manage, and organize their tasks and to-do lists.\n\n## Features\n\n- Create, Read, Update, and Delete tasks.\n- Organize tasks into different lists.\n- Mark tasks as completed or pending.\n- Set due dates for tasks.\n\n## Prerequisites\n\nBefore you begin, ensure you have met the following requirements:\n\n- Java 17 or higher installed.\n- Maven for building the project.\n- An IDE (Eclipse, IntelliJ IDEA, VSCode, etc.) or a code editor of your choice. Personally, I use VSCode.\n- Java and [Spring Boot](https://spring.io/projects/spring-boot) knowledge.\n\n## Getting Started\n\nTo get started with this project, follow these steps:\n\n### 1. Clone the repository:\n\n```bash\ngit clone https://github.com/Macktireh/SpringBootTodolist.git todolist\n```\n\n### 2. Navigate to the project directory:\n\n```bash\ncd todolist\n```\n\n### 3. Build the project using Maven:\n\n```bash\nmvn clean install\n```\n\n### 4. Create Database:\n\nif docker and docker-compose is installed on your computer, execute the following command. If not, install docker to run the command or install a relational database (PostgreSQL, MySQL ...etc).\n\n```bash\ndocker-compose up -d\n```\n\n### 5. Run the application:\n\n```bash\nmvn spring-boot:run\n```\n\n### 6. Open your web browser and access the application at http://localhost:8080.\n\n## Data Models\n\n### Database Schema\n\n![Database Schema](diagram.png)\n\nThe application uses a database to store task-related information. Below is the schema of the database used in the Todolist application:\n\n#### TaskList\n\n- `id`: A unique identifier for the task list.\n- `name`: The name of the task list.\n- `createdAt`: The date when the task list was created.\n\n#### Task\n\n- `id`: A unique identifier for the task.\n- `taskListID`: A reference to the task list to which the task belongs.\n- `title`: The title or name of the task.\n- `description`: A textual description of the task.\n- `dueDate`: An optional due date for the task.\n- `status`: The status of the task, which can be `OPEN`, `IN_PROGRESS`, or `COMPLETED`.\n- `priority`: The priority of the task, which can be `LOW`, `MEDIUM`, or `HIGH`.\n- `createdAt`: The date when the task was created.\n- `updatedAt`: The date when the task was last updated.\n\n#### Label\n\n- `id`: A unique identifier for the label.\n- `name`: The name of the label.\n- `color`: The color associated with the label.\n- `createdAt`: The date when the label was created.\n\n#### Task_Label\n\nThis is a join table that links tasks to labels. It contains two foreign keys, `TASK_ID` and `LABEL_ID`, to create a many-to-many relationship between tasks and labels.\n\nYou can use this schema as a reference to understand how data is structured in the database for the Todolist application.\n\n### Enums\n\nThe application also uses two ENUM types: `PRIORITY` and `STATUS`.\n\n- `PRIORITY`: Represents the priority levels of tasks (`LOW`, `MEDIUM`, `HIGH`).\n- `STATUS`: Represents the status of tasks (`OPEN`, `IN_PROGRESS`, `COMPLETED`).\n\nThese ENUM types are used to define valid values for the priority and status fields in the Task table.\n\n## Configuration\n\nYou can configure the application by modifying the application.properties file. You may need to set up a database connection and other properties as per your requirements.\n\n## License\n\nThis project is licensed under the MIT License - see the LICENSE file for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmacktireh%2Fspringboottodolist","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmacktireh%2Fspringboottodolist","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmacktireh%2Fspringboottodolist/lists"}