{"id":25510418,"url":"https://github.com/art2url/dev-task-flow","last_synced_at":"2026-04-28T18:03:45.337Z","repository":{"id":277387654,"uuid":"932272832","full_name":"art2url/dev-task-flow","owner":"art2url","description":"📊 DevTaskFlow - A task management web app built with Angular. Designed to streamline your workflow and boost productivity.","archived":false,"fork":false,"pushed_at":"2025-03-17T10:06:54.000Z","size":659,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"develop","last_synced_at":"2025-05-20T09:09:14.797Z","etag":null,"topics":["angular","angular-material","filtering","frontend","localstorage","observable","pagination","priority-management","productivity-app","progress-tracking","responsive-design","rxjs","sorting","task-manager","task-tracking","typescript","web-application"],"latest_commit_sha":null,"homepage":"https://dev-task-flow.vercel.app","language":"TypeScript","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/art2url.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,"zenodo":null}},"created_at":"2025-02-13T16:43:40.000Z","updated_at":"2025-03-13T20:25:50.000Z","dependencies_parsed_at":"2025-02-28T15:35:29.006Z","dependency_job_id":"07a42d81-92a2-41ad-bb2c-e55b141598d0","html_url":"https://github.com/art2url/dev-task-flow","commit_stats":null,"previous_names":["art2url/dev-task-flow"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/art2url/dev-task-flow","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/art2url%2Fdev-task-flow","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/art2url%2Fdev-task-flow/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/art2url%2Fdev-task-flow/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/art2url%2Fdev-task-flow/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/art2url","download_url":"https://codeload.github.com/art2url/dev-task-flow/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/art2url%2Fdev-task-flow/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32392304,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-28T14:34:11.604Z","status":"ssl_error","status_checked_at":"2026-04-28T14:32:37.009Z","response_time":56,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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","angular-material","filtering","frontend","localstorage","observable","pagination","priority-management","productivity-app","progress-tracking","responsive-design","rxjs","sorting","task-manager","task-tracking","typescript","web-application"],"created_at":"2025-02-19T09:39:56.017Z","updated_at":"2026-04-28T18:03:45.319Z","avatar_url":"https://github.com/art2url.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# DevTaskFlow\n\nDevTaskFlow is a task management application built with Angular and Node.js, featuring user authentication, task filtering, sorting, and management capabilities. The app includes login, registration, password recovery, and authentication guards for secured access.\n\n## Features\n\n### ✅ Task Management\n\n- Add, edit, delete, and complete tasks\n- Task priority system (Low, Medium, High)\n- Task filtering by completion status, priority, and overdue deadlines\n- Task sorting by date and priority\n- Task searching\n- Pinned tasks feature\n- Pagination for tasks\n\n### ✅ Authentication\n\n- User registration and login using MongoDB\n- Password hashing with bcrypt\n- JWT-based authentication with token storage\n- Forgot password feature (sends a new password via email)\n- Route guard to protect task management routes\n- Logout functionality\n\n### ✅ UI \u0026 UX\n\n- Angular Material design\n- Responsive UI with dynamic theme switching\n- Dark/White mode toggle\n- Form validation with proper error handling\n- Preloaders for login, registration, and password recovery\n- Confirmation dialogs for critical actions (e.g., deleting all tasks)\n- Navigation Menu for better usability\n\n### ✅ Automated Testing \u0026 CI/CD\n\n- **Unit Testing:** Jasmine \u0026 Karma for frontend unit tests\n- **Continuous Integration:** GitHub Actions runs automated unit tests\n- **Deployment Checks:** Vercel deploys only if tests pass\n- **Test Reports:** JUnit reports uploaded to GitHub Actions\n\n## Tech Stack\n\n- **Frontend:** Angular 16, Angular Material\n- **Backend:** Node.js, Express.js, MongoDB (Mongoose)\n- **Authentication:** JWT, bcrypt.js\n- **Email Service:** Nodemailer with AOL SMTP\n- **Hosting:** Vercel (Frontend), Render (Backend)\n- **Testing \u0026 CI/CD:** Jasmine, Karma, GitHub Actions\n\n## Installation \u0026 Setup\n\n### Backend Setup\n\n1. Clone the repository:\n   ```sh\n   git clone https://github.com/art2url/dev-task-flow-auth-server.git\n   cd dev-task-flow-auth-server\n   ```\n2. Install dependencies:\n   ```sh\n   npm install\n   ```\n3. Create a `.env` file in the root directory and add:\n   ```env\n   MONGO_URI=your-mongodb-connection-string\n   JWT_SECRET=your-secret-key\n   EMAIL_USER=your-email@example.com\n   EMAIL_PASS=your-email-password\n   PORT=3000\n   ```\n4. Start the server:\n   ```sh\n   npm start\n   ```\n   The server will run at `http://localhost:3000`.\n\n### Frontend Setup\n\n1. Clone the repository:\n   ```sh\n   git clone https://github.com/art2url/dev-task-flow.git\n   cd dev-task-flow\n   ```\n2. Install dependencies:\n   ```sh\n   npm install\n   ```\n3. Start the application:\n   ```sh\n   ng serve\n   ```\n   The app will run at `http://localhost:4200`.\n\n## Deployment\n\n- **Frontend:** Hosted on Vercel at [https://dev-task-flow.vercel.app](https://dev-task-flow.vercel.app)\n- **Backend:** Hosted on Render at [https://dev-task-flow-auth-server.onrender.com](https://dev-task-flow-auth-server.onrender.com)\n- **GitHub Actions:** Runs unit tests before deployment\n\n## Routes\n\n### Backend API Endpoints\n\n| Method | Endpoint           | Description                       |\n| ------ | ------------------ | --------------------------------- |\n| `POST` | `/register`        | Register a new user               |\n| `POST` | `/login`           | Login user \u0026 return JWT           |\n| `POST` | `/forgot-password` | Send a new password to user email |\n| `GET`  | `/tasks`           | Fetch all tasks for the user      |\n| `POST` | `/tasks`           | Create a new task                 |\n| `PUT`  | `/tasks/:taskId`   | Update a task by ID               |\n| `DELETE` | `/tasks/:taskId` | Delete a task by ID               |\n| `DELETE` | `/tasks`         | Delete all tasks for the user     |\n\n### Frontend Routes\n\n| Path               | Component               | Description                   |\n| ------------------ | ----------------------- | ----------------------------- |\n| `/tasks`           | TaskListComponent       | Main task manager (protected) |\n| `/login`           | LoginComponent          | User login page               |\n| `/register`        | RegisterComponent       | User registration page        |\n| `/forgot-password` | ForgotPasswordComponent | Password reset page           |\n\n## Contributing\n\nPull requests are welcome! Please ensure your changes align with the existing architecture and maintain code quality.\n\n## License\n\nThis project is licensed under the MIT License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fart2url%2Fdev-task-flow","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fart2url%2Fdev-task-flow","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fart2url%2Fdev-task-flow/lists"}