{"id":24362160,"url":"https://github.com/riteek712/taskmanager-turborepo","last_synced_at":"2026-04-12T13:06:30.246Z","repository":{"id":272025352,"uuid":"915295096","full_name":"Riteek712/taskmanager-turborepo","owner":"Riteek712","description":"TaskFlow is a task management app built with Next.js, Nest.js, PostgreSQL, and Prisma ORM. It features task creation and management, real-time updates, user authentication, and Swagger API documentation. The app offers a clean Tailwind CSS frontend and a scalable backend, making task management seamless and efficient.","archived":false,"fork":false,"pushed_at":"2025-02-03T13:11:21.000Z","size":1182,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-12T09:16:10.329Z","etag":null,"topics":["monorepo","nestjs","nextjs","nodejs","postgresql","prisma-orm","rest-api","shadcn-ui","swagger-api","tailwindcss","turborepo","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/Riteek712.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-01-11T13:34:35.000Z","updated_at":"2025-02-03T13:11:25.000Z","dependencies_parsed_at":null,"dependency_job_id":"319d7e34-c49f-4eaa-98a4-3c41a6b8514d","html_url":"https://github.com/Riteek712/taskmanager-turborepo","commit_stats":null,"previous_names":["riteek712/taskmanager-turborepo"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Riteek712%2Ftaskmanager-turborepo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Riteek712%2Ftaskmanager-turborepo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Riteek712%2Ftaskmanager-turborepo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Riteek712%2Ftaskmanager-turborepo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Riteek712","download_url":"https://codeload.github.com/Riteek712/taskmanager-turborepo/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243188236,"owners_count":20250457,"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":["monorepo","nestjs","nextjs","nodejs","postgresql","prisma-orm","rest-api","shadcn-ui","swagger-api","tailwindcss","turborepo","typescript"],"created_at":"2025-01-18T22:50:00.893Z","updated_at":"2025-12-25T14:01:56.638Z","avatar_url":"https://github.com/Riteek712.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TaskFlow - Task Management System\n\nA modern task management system built with Next.js, Nest.js, and Prisma using Turborepo and pnpm for monorepo management.\n\n![TaskFlow Hero](./ProjectScreens/heroTM.png)\n\n## Tech Stack\n\n### Frontend\n- Next.js 14\n- TypeScript\n- Tailwind CSS\n- Shadcn/ui\n\n### Backend\n- Nest.js\n- Prisma ORM\n- PostgreSQL\n\n### Development Tools\n- Turborepo\n- pnpm\n- ESLint\n- Prettier\n\n## Prerequisites\n\nBefore you begin, ensure you have installed:\n- Node.js (v18 or higher)\n- pnpm (`npm install -g pnpm`)\n- PostgreSQL\n\n## Project Structure\n\n```\ntaskmanager-turborepo/\n├── apps/\n│   ├── web/          # Next.js frontend\n│   └── backend/          # Nest.js backend\n├── packages/\n│   ├── eslint-config/\n│   ├── typescript-config/\n│   └── ui/           # Shared UI components\n├── turbo.json\n├── projectscreens/   # Screenshots of all pages\n└── package.json\n```\n\n## Project Screenshots\n\nThe `ProjectScreens` folder contains screenshots of all pages in the application. You can find:\n- Landing page (heroTM.png)\n- Authentication pages\n- Dashboard views\n- Task management interfaces\n\nThese screenshots provide a visual reference for the application's UI and can be helpful for development and documentation purposes.\n\n## Getting Started\n\n1. Clone the repository\n```bash\ngit clone https://github.com/Riteek712/taskmanager-turborepo\ncd taskmanager-turborepo\n```\n\n2. Install dependencies\n```bash\npnpm install\n```\n\n3. Set up environment variables\n\nCreate `.env` files in both the backend directories:\n\n\nFor `apps/backend/.env`:\n```env\nDATABASE_URL=\"postgresql://username:password@localhost:5432/taskflow\"\nJWT_SECRET=\"your-secret-key\"\n```\n\n4. Set up the database\n```bash\ncd apps/backend\npnpm prisma generate\npnpm prisma migrate dev\n```\n\n5. Start the development servers\n```bash\n# From the root directory\npnpm dev\n```\n\nThis will start:\n- Frontend at http://localhost:3000\n- Backend at http://localhost:3003\n\n## Available Scripts\n\nFrom the root directory:\n\n```bash\npnpm build        # Build all applications\npnpm run dev          # Start all applications in development mode\npnpm lint         # Run ESLint across all applications\npnpm format       # Format code using Prettier\npnpm test         # Run tests across all applications\n```\n\n## Database Management\n\nThe project uses Prisma ORM with PostgreSQL. To manage your database:\n\n```bash\ncd apps/backend\n\n# Generate Prisma Client\npnpm prisma generate\n\n# Create a migration\npnpm prisma migrate dev\n\n\n```\n\n## Development Guidelines\n\n### Adding Dependencies\n\nTo add a dependency to a specific workspace:\n```bash\npnpm add \u003cpackage\u003e --filter \u003cworkspace\u003e\n```\n\nExample:\n```bash\npnpm add axios --filter web\n```\n\n### Creating New Features\n\n1. Create a new branch\n```bash\ngit checkout -b feature/your-feature-name\n```\n\n2. Make your changes and commit using conventional commits\n```bash\ngit commit -m \"feat: add new feature\"\n```\n\n3. Push and create a pull request\n```bash\ngit push origin feature/your-feature-name\n```\n\n\n\n## Contributing\n\n1. Fork the repository\n2. Create your feature branch\n3. Commit your changes\n4. Push to the branch\n5. Open a Pull Request\n\n## License\n\nThis project is licensed under the MIT License - see the LICENSE file for details.\n\n## Acknowledgments\n\n- Built with love by Riteek Rakesh\n- UI Design inspired by modern web applications\n- Special thanks to the open source community\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Friteek712%2Ftaskmanager-turborepo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Friteek712%2Ftaskmanager-turborepo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Friteek712%2Ftaskmanager-turborepo/lists"}