{"id":51181267,"url":"https://github.com/lahi-ru/task-management-system","last_synced_at":"2026-06-27T07:02:43.580Z","repository":{"id":367228167,"uuid":"1279840627","full_name":"LAHI-RU/Task-Management-System","owner":"LAHI-RU","description":null,"archived":false,"fork":false,"pushed_at":"2026-06-25T04:16:03.000Z","size":106,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-06-25T06:11:12.465Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/LAHI-RU.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-06-25T03:59:31.000Z","updated_at":"2026-06-25T04:16:08.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/LAHI-RU/Task-Management-System","commit_stats":null,"previous_names":["lahi-ru/task-management-system"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/LAHI-RU/Task-Management-System","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LAHI-RU%2FTask-Management-System","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LAHI-RU%2FTask-Management-System/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LAHI-RU%2FTask-Management-System/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LAHI-RU%2FTask-Management-System/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LAHI-RU","download_url":"https://codeload.github.com/LAHI-RU/Task-Management-System/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LAHI-RU%2FTask-Management-System/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34844346,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-27T02:00:06.362Z","response_time":126,"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":[],"created_at":"2026-06-27T07:02:40.731Z","updated_at":"2026-06-27T07:02:43.573Z","avatar_url":"https://github.com/LAHI-RU.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FlowBoard\n\nFlowBoard is a full-stack task management app built with React, Express, Prisma, and MySQL. It includes authentication, role-based access, task assignment, workflow statuses, filtering, pagination, and a dashboard summary.\n\n## Features\n\n- Register and sign in with HTTP-only cookie sessions\n- Admin and user roles\n- Admins can view all users and tasks\n- Users can view tasks they created or tasks assigned to them\n- Create, update, view, and delete tasks\n- Task priority and workflow status tracking\n- Search and filter tasks by title, description, status, and priority\n- Backend pagination for the task list\n- Dashboard with status counts, upcoming work, and overdue tasks\n\n## Tech Stack\n\n- React, Vite, TypeScript\n- Express, Node.js, TypeScript\n- MySQL, Prisma\n- TanStack Query\n- React Hook Form\n- Zod\n- JWT, bcryptjs, HTTP-only cookies\n- Lucide React\n\n## Project Structure\n\n```text\nclient/             React frontend\nserver/             Express API\nserver/prisma/      Prisma schema, migrations, and seed script\ndocker-compose.yml  Local MySQL container\n```\n\n## Requirements\n\n- Node.js 20 or newer\n- npm\n- MySQL 8 or Docker\n\n## Setup\n\nInstall dependencies:\n\n```bash\nnpm install\n```\n\nCreate environment files:\n\n```bash\ncopy client\\.env.example client\\.env\ncopy server\\.env.example server\\.env\n```\n\nStart MySQL with Docker:\n\n```bash\ndocker compose up -d\n```\n\nIf you are using a local MySQL installation instead, create a database and user that match `server/.env`:\n\n```bash\nmysql -u root -e \"CREATE DATABASE IF NOT EXISTS flowboard CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci; CREATE USER IF NOT EXISTS 'flowboard'@'localhost' IDENTIFIED BY 'flowboard_password'; GRANT ALL PRIVILEGES ON flowboard.* TO 'flowboard'@'localhost'; FLUSH PRIVILEGES;\"\n```\n\nPrepare the database:\n\n```bash\nnpm run prisma:generate -w server\nnpm run prisma:migrate -w server -- --name init\nnpm run seed -w server\n```\n\nRun the app:\n\n```bash\nnpm run dev\n```\n\nLocal URLs:\n\n```text\nFrontend: http://localhost:5173\nAPI:      http://localhost:5000\nHealth:   http://localhost:5000/api/health\n```\n\n## Demo Accounts\n\n```text\nAdmin\nEmail: admin@flowboard.dev\nPassword: Admin@12345\n\nUser\nEmail: user@flowboard.dev\nPassword: User@12345\n```\n\n## Commands\n\n```bash\nnpm run dev\nnpm run build\nnpm run lint\nnpm run format\nnpm run prisma:studio -w server\nnpm run seed -w server\n```\n\n## Environment\n\nClient:\n\n```text\nVITE_API_URL=http://localhost:5000\n```\n\nServer:\n\n```text\nNODE_ENV=development\nPORT=5000\nCLIENT_ORIGIN=http://localhost:5173\nCLIENT_ORIGINS=http://localhost:5173,http://localhost:5174\nDATABASE_URL=\"mysql://flowboard:flowboard_password@localhost:3306/flowboard\"\nJWT_SECRET=\"replace-this-with-a-long-random-secret\"\nJWT_EXPIRES_IN=\"7d\"\n```\n\n## API Summary\n\nAuth:\n\n```text\nPOST /api/auth/register\nPOST /api/auth/login\nPOST /api/auth/logout\nGET  /api/auth/me\n```\n\nUsers:\n\n```text\nGET /api/users\n```\n\nTasks:\n\n```text\nGET    /api/tasks\nPOST   /api/tasks\nGET    /api/tasks/:taskId\nPATCH  /api/tasks/:taskId\nDELETE /api/tasks/:taskId\n```\n\nSupported task query parameters:\n\n```text\nsearch\npriority\nstatus\nassignedToId\ncreatedById\ndueFrom\ndueTo\npage\npageSize\n```\n\n## Build\n\n```bash\nnpm run build\n```\n\nThe frontend build output is created in `client/dist`. The server build output is created in `server/dist`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flahi-ru%2Ftask-management-system","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flahi-ru%2Ftask-management-system","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flahi-ru%2Ftask-management-system/lists"}