{"id":19883578,"url":"https://github.com/jorgesarricolea/task_keeper","last_synced_at":"2026-04-14T04:31:10.460Z","repository":{"id":246992493,"uuid":"824778929","full_name":"JorgeSarricolea/task_keeper","owner":"JorgeSarricolea","description":"Task management system built using Java 8 and Spring Boot MVC","archived":false,"fork":false,"pushed_at":"2024-07-06T01:58:58.000Z","size":25,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-11T18:33:05.701Z","etag":null,"topics":["bootstrap","java","maven","mybitas","mysql","spring-boot"],"latest_commit_sha":null,"homepage":"","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/JorgeSarricolea.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2024-07-05T23:42:08.000Z","updated_at":"2024-10-14T20:53:16.000Z","dependencies_parsed_at":"2024-07-06T03:43:56.368Z","dependency_job_id":"f8b7db96-6032-45a6-8f90-bdab569a9cfc","html_url":"https://github.com/JorgeSarricolea/task_keeper","commit_stats":null,"previous_names":["jorgesarricolea/task-keeper","jorgesarricolea/task_keeper"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JorgeSarricolea%2Ftask_keeper","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JorgeSarricolea%2Ftask_keeper/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JorgeSarricolea%2Ftask_keeper/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JorgeSarricolea%2Ftask_keeper/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JorgeSarricolea","download_url":"https://codeload.github.com/JorgeSarricolea/task_keeper/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241312345,"owners_count":19942347,"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":["bootstrap","java","maven","mybitas","mysql","spring-boot"],"created_at":"2024-11-12T17:21:20.389Z","updated_at":"2026-04-14T04:31:10.421Z","avatar_url":"https://github.com/JorgeSarricolea.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Table of Contents\n\n1. [Introduction](#introduction)\n\n2. [Getting Started](#getting-started)\n   - 2.1 [Prerequisites](#prerequisites)\n   - 2.2 [Instructions](#instructions)\n   \n3. [Database Schema](#database-schema)\n   - 4.1 [Table: `Tasks`](#table-tasks)\n   \n4. [Project Features](#project-features)\n   - 4.1 [Front-End](#front-end)\n   - 4.2 [Back-End](#back-end)\n   \n5. [Usage](#usage)\n\n# Introduction\n\nThe application is a task management system built using Java 8 and Spring Boot MVC. It leverages Maven for project management and Bootstrap for responsive design. Mybatis is employed for ORM, facilitating seamless interaction with any database through a modularized data connection dependency. The project consists of three main screens: a welcoming home screen featuring a task registration button, a task creation screen capturing task details like name, description, and start date, and a listing screen displaying all registered tasks. \n# Getting started\n\n## Prerequisites\n- Java 8\n- Maven\n- MySQL\n\n\u003e [!IMPORTANT]\nBefore you begin, make sure you have all these development tools installed\n\n## Instructions\n\n1. Clone the repository:\n\n```\ngit clone https://github.com/JorgeSarricolea/Task-Keeper/\ncd Task-Keeper\n```\n\n2. Install dependencies using Maven:\n\n```\nmvn clean install\n```\n\n3. Set up MySQL:\n\n\u003e [!IMPORTANT]\n\u003e Ensure MySQL is installed and running on your local machine.\n\nCreate a new MySQL database:\n\n```\nCREATE DATABASE rc_todo_db;\n```\n\n4. Run the application:\n\n```\nmvn spring-boot:run\n```\n\n## Database Schema:\n\n1. Configure database connection:\n\n```\nspring.datasource.url=jdbc:mysql://localhost:3306/rc_todo_db\nspring.datasource.username=your_database_username\nspring.datasource.password=your_database_password\nspring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver\n```\n\n### Table: `Tasks`\n\n| Column       | Type         | Constraints        | Description                                   |\n|--------------|--------------|--------------------|-----------------------------------------------|\n| `id`         | bigint       | PRIMARY KEY        | Unique identifier, auto-incremented            |\n| `name`       | varchar(255) | NOT NULL           | Name of the task                              |\n| `description`| text         |                    | Description of the task                       |\n| `startDate`  | date         |                    | Start date of the task                        |\n\n**- Task Table:** Stores information about tasks, including their unique identifier (`id`), name (`name`), optional description (`description`), and start date (`startDate`). Each task can have its details managed within the system.\n\n```\nCREATE TABLE tasks (\n    id BIGINT AUTO_INCREMENT PRIMARY KEY,\n    name VARCHAR(255) NOT NULL,\n    description TEXT,\n    startDate DATE\n);\n```\n\n\u003e [!TIP]\n\u003e You can use this query to create the table directly in terminal or the DB editor you are using.\n\n# Project Features\n\n## Front-End\n\n### Task Management\n- Displays a list of all tasks with options to view, edit, and delete each task.\n- Implements pagination for managing large datasets effectively.\n\n### Creating and Editing Tasks\n- Provides a form to create a new task with fields for name, description, and start date.\n- Validates input fields to prevent submission of empty data.\n- Allows users to modify existing tasks with updated details.\n- Ensures data integrity through input validation before saving changes.\n\n### Task Deletion\n- Requires user confirmation before permanently deleting a task to prevent accidental deletions.\n\n### User Interface\n- Enhances user experience by providing consistent navigation across different pages.\n- Includes links for easy access to various sections of the application.\n  \n## Back-End\n\n### CRUD Operations\n- Supports CRUD operations (Create, Read, Update, Delete) for tasks.\n- Ensures data validation and integrity checks during all operations.\n\n### User Input Validation\n- Validates user input on both front-end and back-end to prevent submission of empty or invalid data.\n- Provides feedback to users on validation errors to improve data entry accuracy.\n\n## User Experience\n- Implements a confirmation dialog for deleting tasks to confirm user intent and prevent accidental deletions.\n\n# Usage\n\n- Home: http://localhost:8080/\n- Tasks list: http://localhost:8080/tasks\n- Create new task: http://localhost:8080/add-task\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjorgesarricolea%2Ftask_keeper","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjorgesarricolea%2Ftask_keeper","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjorgesarricolea%2Ftask_keeper/lists"}