{"id":25919723,"url":"https://github.com/prajwalamte/taskhive","last_synced_at":"2026-04-12T09:09:53.718Z","repository":{"id":280241045,"uuid":"941028727","full_name":"PrajwalAmte/TaskHive","owner":"PrajwalAmte","description":"TaskHive combines a Spring Boot backend with an Angular frontend to deliver a responsive, efficient task management experience. The application features both dark and light themes and caters to both traditional users and power users who prefer command-line interactions.","archived":false,"fork":false,"pushed_at":"2025-05-02T19:34:16.000Z","size":42,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-02T19:34:17.637Z","etag":null,"topics":["angular","gui-application","java","jpa-hibernate","mysql-database","spring-boot","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/PrajwalAmte.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":"2025-03-01T10:05:17.000Z","updated_at":"2025-05-02T19:20:07.000Z","dependencies_parsed_at":"2025-03-02T08:19:13.502Z","dependency_job_id":"67330f2d-c461-4bb2-8424-0ddc486837e9","html_url":"https://github.com/PrajwalAmte/TaskHive","commit_stats":null,"previous_names":["prajwalamte/taskhive"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/PrajwalAmte/TaskHive","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PrajwalAmte%2FTaskHive","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PrajwalAmte%2FTaskHive/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PrajwalAmte%2FTaskHive/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PrajwalAmte%2FTaskHive/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/PrajwalAmte","download_url":"https://codeload.github.com/PrajwalAmte/TaskHive/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/PrajwalAmte%2FTaskHive/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271838731,"owners_count":24831632,"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","status":"online","status_checked_at":"2025-08-24T02:00:11.135Z","response_time":111,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["angular","gui-application","java","jpa-hibernate","mysql-database","spring-boot","typescript"],"created_at":"2025-03-03T15:15:54.557Z","updated_at":"2026-04-12T09:09:53.712Z","avatar_url":"https://github.com/PrajwalAmte.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TaskHive\n\nA modern task management application with a terminal-inspired interface that supports both GUI and command-line workflows.\n\n## Overview\n\nTaskHive combines a Spring Boot backend with an Angular frontend to deliver a responsive, efficient task management experience. The application features both dark and light themes and caters to both traditional users and power users who prefer command-line interactions.\n\n## Dashboard Screenshots\n\n| Light Mode | Dark Mode |\n|------------|-----------|\n| ![TaskHive dashboard in light mode](./LightMode-Dashboard.png) | ![TaskHive dashboard in dark mode](./DarkMode-Dashboard.png) |\n\n## Core Features\n\nTaskHive offers comprehensive task management capabilities including creation, viewing, updating, and deletion of tasks. Users can mark tasks as complete/incomplete, filter by priority/category/due date, search by title or description, and access upcoming tasks. The application features both a graphical interface and a terminal-style command interface with dark/light theme toggling.\n\n## Tech Stack\n\n**Backend**: Spring Boot 3.x, Spring Data JPA, MySQL, Java 23+, Maven  \n**Frontend**: Angular 19, TypeScript, RxJS, Angular Material, CSS Custom Properties\n\n## Quick Start\n\n### Prerequisites\n- Java 23+, Maven\n- Node.js 20+, npm 10+\n\n### Backend Setup\n```bash\ngit clone https://github.com/PrajwalAmte/TaskHive.git\ncd TaskHive\ncd TaskHive-API\n./mvnw clean install\n./mvnw spring-boot:run\n```\n\n### Frontend Setup\n```bash\ncd TaskHive-UI\nnpm install\nnpm start\n```\n\nThe application will be available at http://localhost:4200 with the API at http://localhost:8080.\n\n## API Reference\n\n| Method | Endpoint | Description |\n|--------|----------|-------------|\n| GET    | /api/tasks | Get all tasks |\n| POST   | /api/tasks | Create a new task |\n| DELETE | /api/tasks/{id} | Delete a task |\n| PUT    | /api/tasks/{id}/toggle | Toggle task completion |\n| GET    | /api/tasks/search | Search tasks |\n| GET    | /api/tasks/priority/{priority} | Get tasks by priority |\n| GET    | /api/tasks/category/{category} | Get tasks by category |\n| GET    | /api/tasks/due-date/{date} | Get tasks by due date |\n| GET    | /api/tasks/upcoming | Get upcoming tasks |\n\n## Command Bar\n\nTaskHive's command bar supports various commands for efficient navigation and task management:\n\n| Command | Description |\n|---------|------------|\n| `help` | Show commands |\n| `ls` | List tasks |\n| `add` | New task |\n| `priority \u003clevel\u003e` | Filter by priority |\n| `search \u003cquery\u003e` | Search tasks |\n| `today` | Today's tasks |\n\n## Project Structure\n\nThe project follows a clean architecture with clear separation of concerns:\n\n**Backend (TaskHive-API)**: Contains controllers, models, repositories, and services organized in a standard Spring Boot structure.\n\n**Frontend (TaskHive-UI)**: Organized into core (components, services, models), features (task-specific modules), and shared resources.\n\n## Development\n\n**Backend**: Use IntelliJ IDEA or Eclipse. Run tests with `mvn test`. API documentation available at `/swagger-ui.html`.\n\n**Frontend**: Use Visual Studio Code with recommended extensions. Run tests with `ng test`, build with `ng build --prod`, and lint with `ng lint`.\n\n## Learning Journey\n\nTaskHive was built as a hands-on learning project for Spring Boot and Angular.\nDetailed notes on concepts practiced, challenges addressed, and outcomes are documented in [LEARNING.md](./LEARNING.md).\n\n## Contributing\n\nContributions are welcome! Fork the repository, create a feature branch (`feature/my-feature`), make your changes, and submit a pull request.\n\n## License\n\nThis project is licensed under the MIT License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprajwalamte%2Ftaskhive","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fprajwalamte%2Ftaskhive","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprajwalamte%2Ftaskhive/lists"}