{"id":28386070,"url":"https://github.com/chandumaram/issue-tracker","last_synced_at":"2026-04-10T13:32:32.218Z","repository":{"id":294975433,"uuid":"840234135","full_name":"chandumaram/issue-tracker","owner":"chandumaram","description":"Issue-Tracker Website using Next JS, Tailwind CSS, Prisma \u0026 MySQL ","archived":false,"fork":false,"pushed_at":"2024-08-09T08:57:45.000Z","size":73,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-26T13:47:44.200Z","etag":null,"topics":["axios","classnames","datagrip","easymde","hookform-resolvers","mysql","nextjs","nodejs","prisma","prisma-client","radix-ui","react-dom","react-hook-form","react-icons","react-simplemde-editor","reactjs","tailwindcss","typescript","zod"],"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/chandumaram.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}},"created_at":"2024-08-09T08:57:41.000Z","updated_at":"2024-08-29T05:58:34.000Z","dependencies_parsed_at":"2025-05-23T00:36:48.161Z","dependency_job_id":"d76987b6-5a65-4323-a134-aa986f3f9317","html_url":"https://github.com/chandumaram/issue-tracker","commit_stats":null,"previous_names":["chandumaram/issue-tracker"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/chandumaram/issue-tracker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chandumaram%2Fissue-tracker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chandumaram%2Fissue-tracker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chandumaram%2Fissue-tracker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chandumaram%2Fissue-tracker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/chandumaram","download_url":"https://codeload.github.com/chandumaram/issue-tracker/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/chandumaram%2Fissue-tracker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31645284,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-10T07:40:12.752Z","status":"ssl_error","status_checked_at":"2026-04-10T07:40:11.664Z","response_time":98,"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":["axios","classnames","datagrip","easymde","hookform-resolvers","mysql","nextjs","nodejs","prisma","prisma-client","radix-ui","react-dom","react-hook-form","react-icons","react-simplemde-editor","reactjs","tailwindcss","typescript","zod"],"created_at":"2025-05-30T13:09:32.937Z","updated_at":"2026-04-10T13:32:32.202Z","avatar_url":"https://github.com/chandumaram.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).\n\n## Getting Started\n\nFirst, run the development server:\n\n```bash\nnpm run dev\n# or\nyarn dev\n# or\npnpm dev\n# or\nbun dev\n```\n\nOpen [http://localhost:3000](http://localhost:3000) with your browser to see the result.\n\n### Process followed While Crating this Project\n\n- Reference is [https://github.com/mosh-hamedani/issue-tracker/tree/main](https://github.com/mosh-hamedani/issue-tracker/tree/main) \u0026 [https://www.youtube.com/watch?v=J9sfR6HN6BY]\n\n- Install react-icons using `npm install react-icons --save`\n\n  - [https://react-icons.github.io/react-icons/]\n\n- Install classnames using `npm i classnames`\n\n- Install and setup MySql database\n\n  1. Install MySql from `https://www.mysql.com/downloads/`\n  2. Install DataGrip from `https://www.jetbrains.com/datagrip/`\n\n- Using Prisma\n\n  1. Install with `npm install prisma`\n  2. Initializing with `npx prisma init`\n  3. write Schema in `prisma/schema.prisma`\n  4. Update DatabaseURL in `.evn`\n  5. Migrate Schema using `npx prisma migrate dev`\n\n- Setup database table in Mysql using DataGrip\n\n- Install Zod using `npm i zod`\n\n  - Zod is a TypeScript-first schema declaration and validation library\n\n- [Radix UI](https://www.radix-ui.com/) - An open source component library\n\n  - Install using `npm install @radix-ui/themes`\n  - Import the CSS file in app/layout.tsx `import '@radix-ui/themes/styles.css';`\n  - Add the **Theme** component in app/layout.tsx\n    ```\n    export default function () {\n      return (\n        \u003chtml\u003e\n          \u003cbody\u003e\n            \u003cTheme\u003e\n              \u003cMyApp /\u003e\n            \u003c/Theme\u003e\n          \u003c/body\u003e\n        \u003c/html\u003e\n      );\n    }\n    ```\n\n- Install react-simplemde-editor using `npm install --save react-simplemde-editor easymde`\n\n  - [https://www.npmjs.com/package/react-simplemde-editor]\n\n- Install react-hook-form using `npm install react-hook-form`\n\n  - [https://react-hook-form.com/get-started]\n\n- Install axios using `npm i axios`\n\n  - Promise based HTTP client for the browser and node.js\n  - [https://www.npmjs.com/package/axios]\n\n- Install React Hook Form using `npm i @hookform/resolvers`\n\n  - Performant, flexible and extensible forms with easy to use validation\n  - [https://www.npmjs.com/package/@hookform/resolvers]\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchandumaram%2Fissue-tracker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchandumaram%2Fissue-tracker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchandumaram%2Fissue-tracker/lists"}