{"id":15817007,"url":"https://github.com/evavic44/quiznote","last_synced_at":"2025-07-03T22:34:53.544Z","repository":{"id":237855554,"uuid":"792741363","full_name":"Evavic44/quiznote","owner":"Evavic44","description":"An AI-powered quiz generator for creating quizes from your notes and textbooks | Powered by Google Gemini","archived":false,"fork":false,"pushed_at":"2024-05-03T09:19:26.000Z","size":1185,"stargazers_count":26,"open_issues_count":2,"forks_count":8,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-05-07T12:49:39.015Z","etag":null,"topics":["gemini","gemini-api","hackathon","quiz","quizgenerator"],"latest_commit_sha":null,"homepage":"https://quiznote.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/Evavic44.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":"2024-04-27T12:52:23.000Z","updated_at":"2025-04-07T17:34:13.000Z","dependencies_parsed_at":"2024-05-03T11:35:33.205Z","dependency_job_id":"6ab02500-066f-458b-b552-bc7c4c8b72fd","html_url":"https://github.com/Evavic44/quiznote","commit_stats":null,"previous_names":["evavic44/quiznote"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Evavic44/quiznote","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Evavic44%2Fquiznote","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Evavic44%2Fquiznote/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Evavic44%2Fquiznote/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Evavic44%2Fquiznote/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Evavic44","download_url":"https://codeload.github.com/Evavic44/quiznote/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Evavic44%2Fquiznote/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263415758,"owners_count":23463104,"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":["gemini","gemini-api","hackathon","quiz","quizgenerator"],"created_at":"2024-10-05T05:21:37.888Z","updated_at":"2025-07-03T22:34:53.518Z","avatar_url":"https://github.com/Evavic44.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\u003ca href=\"https://quiznote.vercel.app\"\u003e\u003cimg src=\"/public/logo.png\" width=\"60px\"\u003e\u003c/a\u003e\n\u003c/div\u003e\n\n\u003cdiv align=\"center\"\u003e\n\u003ch1\u003eQuiznote\u003c/h1\u003e\n\u003cp\u003eThe ultimate learner's companior for transforming notes into interactive quizzes to help maximize learning retention\u003c/p\u003e\n\u003c!-- TODO: Replace with demo video --\u003e\n\u003ca href=\"https://youtu.be/ek5dUA8Db_w?si=V_9dNpyM2xk0CW5a\" target=\"_blank\"\u003e\u003cimg src=\"/public/images/cover.png\" alt=\"cover image\" /\u003e\u003c/a\u003e\n\u003c/div\u003e\n\n## Demo Video\n\n[Quiznote Demo Video](https://youtu.be/ek5dUA8Db_w?si=V_9dNpyM2xk0CW5a)\n\n## Technologies\n\n- 🎯 [NextJS](https://nextjs.org) - UI framework\n- ☑️ [Vercel](https://vercel.com) - Hosting and deployment\n- 💅🏽 [TailwindCSS](https://tailwindcss.com) /CSS - Styling and UI\n- 🤖 [Gemini](https://gemini.google.com) / AI API\n\n## Run Project Locally\n\nFollow the steps below to run quiznote locally on your machine\n\n\u003e [!note]\n\u003e For the Google AI Hackathon judges, please ignore the steps below and insert the `GOOGLE_SERVICE_KEY` sent via the test email into a `.env.local` file to start the program.\n\n- `git clone https://github.com/Evavic44/quiznote`\n\n- Rename `.env.example` to `.env.local`\n- Get your private keys from [google cloud IAM \u0026 Admin](https://cloud.google.com)\n- Create a project that has access to all Vertext AI resource\n- Export the service account key to `JSON`\n- convert the `JSON` content to `base64`\n- Set the value of `GOOGLE_SERVICE_KEY` to the Base64 JSON\n\n```bash\n\ncd quiznote\n\nnpm install\n\nnpm run dev\n```\n\nOpen [http://localhost:3000](http://localhost:3000) in your browser to see the result.\n\n### Important files and folders\n\n| File(s)                                       | Description                                   |\n| --------------------------------------------- | --------------------------------------------- |\n| [`route.ts`](./src/app/api/generate/route.ts) | Integration file for setting up Gemini prompt |\n| [`page.tsx`](./src/app/page.tsx)              | Homepage route                                |\n| [`components`](./src/components/)             | Where components are stored                   |\n| [`store`](./src/store/)                       | State management store                        |\n\n\u003cbr /\u003e\u003cbr /\u003e\n\n\u003cdiv align=\"center\"\u003e\n  \u003cp\u003eBuilt for the \u003ca href=\"https://googleai.devpost.com/?ref_feature=challenge\u0026ref_medium=discover\"\u003eGoogle AI Hackathon\u003c/a\u003e\u003c/p\u003e\n  \u003cp\u003ePowered by\u003c/p\u003e\n  \u003ca href=\"https://gemini.google.com\"\u003e\u003cimg src=\"/public/images/gemini.png\" width=\"150px\"\u003e\u003c/a\u003e\n\u003c/div\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fevavic44%2Fquiznote","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fevavic44%2Fquiznote","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fevavic44%2Fquiznote/lists"}