{"id":18972973,"url":"https://github.com/sumer16/asunto","last_synced_at":"2025-09-05T21:32:22.563Z","repository":{"id":200274638,"uuid":"705167040","full_name":"Sumer16/asunto","owner":"Sumer16","description":"Asunto Issue tracker is a full-stack application that helps product owners to track issues for their teams in a productive and secure way.","archived":false,"fork":false,"pushed_at":"2024-11-03T05:44:44.000Z","size":380,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-11-03T06:18:41.561Z","etag":null,"topics":["issue-tracker","javascript","nextjs13","postgresql","postman","prisma-orm","radix-ui","react-icon","reactjs","tailwindcss","typescript"],"latest_commit_sha":null,"homepage":"https://asunto.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/Sumer16.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}},"created_at":"2023-10-15T08:24:29.000Z","updated_at":"2024-11-03T05:44:48.000Z","dependencies_parsed_at":"2023-10-16T11:08:44.536Z","dependency_job_id":"74b81acf-9b45-4bd4-a7e2-e71e2e761eb6","html_url":"https://github.com/Sumer16/asunto","commit_stats":null,"previous_names":["sumer16/asunto"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sumer16%2Fasunto","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sumer16%2Fasunto/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sumer16%2Fasunto/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sumer16%2Fasunto/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Sumer16","download_url":"https://codeload.github.com/Sumer16/asunto/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":232063169,"owners_count":18467287,"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":["issue-tracker","javascript","nextjs13","postgresql","postman","prisma-orm","radix-ui","react-icon","reactjs","tailwindcss","typescript"],"created_at":"2024-11-08T15:10:35.952Z","updated_at":"2025-01-01T08:32:56.202Z","avatar_url":"https://github.com/Sumer16.png","language":"TypeScript","readme":"# [Asunto Issue Tracker](https://asunto.vercel.app)\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](/LICENSE)\n\n![Asunto Issue Tracker Landing Page](/asunto.png)\n\n### NOTE: This project is no longer maintained.\n\n## About Asunto Issue Tracker\n\nThis is a fully-functional full-stack issue tracker application that helps product owners to track issues for their teams in a productive and secure way.\nThis platform is built using Next.js 13.5, React, Radix UI, TailwindCSS, PostgreSQL, Supabase, Prisma, NextAuth and more.\n\n## Key Features\n\n- **Troubleshoot Issues:** Instantly look at various issues the team needs to work on\n- **Editing \u0026 Deleting Issues:** Edit and delete issues in real-time\n- **Pagination:** Manage multiple issues easily through pagination\n- **Member Management:** Assign authenticated members various issues based on their skills\n- **Charts:** Visualize the issues in a more seamless and detailed format\n- **Stunning UI:** Beautifully designed using TailwindCSS and Radix UI\n- **Responsiveness:** Works flawlessly on both desktop and mobile devices\n- **Database \u0026 ORM:** PostgreSQL for robustness \u0026 Prisma for database operations\n- **PostgreSQL Database:** Utilize Supabase for your PostgreSQL database\n- **Authentication:** Web app security using NextAuth \u0026 Google Sign-in\n\n## Installation\n\n### Clone the repository\nTo get started, you'll need to clone this repository to your local machine. You can do this by running the following in the command line:\n\n```bash \ngit clone https://github.com/Sumer16/asunto.git \n```\n\n### Install dependencies\n\nOnce you've cloned the repository, navigate to the project directory and run npm/yarn install to install all the necessary dependencies.\n\n```bash\ncd asunto\n\nnpm install\n# or\nyarn install\n```\n\n### Setup the environment variables\n\nAfter the dependencies have been installed, create a ```.env``` file in the root of the project and add all necessary API credentials of your own:\n\n```env\nDATABASE_URL=your_db_url\nDIRECT_URL=your_migration_direct_url\n\nGOOGLE_CLIENT_SECRET=your_google_secret\nGOOGLE_CLIENT_ID=your_google_id\n\nNEXTAUTH_SECRET=your_nextauth_secret_key\nNEXTAUTH_URL=your_nextauth_url\n```\n\n### Setup Prisma\n\nAdd MySQL Database (I used PlanetScale but later changed to Supabase, you can use any of your own choice):\n\n```bash\nnpx prisma generate\nnpx prisma db push\n```\n\nNOTE: I migrated my database from PlanetScale to Supabase. The steps to migrate is very simple for MySQL to PostgreSQL. Check the docs.\n\n### Run the development server\n\nAfter the dependencies have been installed, you can start the development server by running:\n\n```bash\nnpm run dev\n# or\nyarn dev\n```\n\nThis will start the server at `http://localhost:3000`, and you can view the website in your browser.\n\nOpen [`http://localhost:3000`](http://localhost:3000) with your browser to see the result.\n\n## Build for production\n\n```bash\nnpm run build\n# or\nyarn build\n```\n\n## Deploy on Vercel\n\nThe easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template\u0026filter=next.js\u0026utm_source=create-next-app\u0026utm_campaign=create-next-app-readme) from the creators of Next.js.\n\n```bash\nnpm install -g vercel\n# or\nyarn global add vercel\n\nvercel\n```\n\nCheck out the [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.\n\n## Things to say\n\n### Learn More\n\nTo learn more about Next.js, take a look at the following resources:\n\n- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.\n- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.\n\nYou can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!\n\n## Credits\n\n- [Programming with Mosh](https://www.codewithmosh.com/) =\u003e Thanks for making this amazing tutorial!\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsumer16%2Fasunto","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsumer16%2Fasunto","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsumer16%2Fasunto/lists"}