{"id":51040393,"url":"https://github.com/yusufaf/quizaroni","last_synced_at":"2026-06-22T10:31:09.126Z","repository":{"id":359894738,"uuid":"437367477","full_name":"yusufaf/quizaroni","owner":"yusufaf","description":"Flashcard \u0026 quiz study app — React frontend + serverless AWS backend (Lambda, DynamoDB, S3, Cognito) in a pnpm monorepo.","archived":false,"fork":false,"pushed_at":"2026-06-21T01:34:47.000Z","size":8845,"stargazers_count":0,"open_issues_count":5,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-06-21T02:12:11.329Z","etag":null,"topics":["aws-cdk","aws-lambda","cognito","dynamodb","flashcards","monorepo","quiz","react","serverless","study-app","typescript","vite"],"latest_commit_sha":null,"homepage":"https://quizaroni.netlify.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/yusufaf.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","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":"2021-12-11T19:11:11.000Z","updated_at":"2026-06-21T01:34:34.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/yusufaf/quizaroni","commit_stats":null,"previous_names":["yusufaf/quizaroni"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/yusufaf/quizaroni","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yusufaf%2Fquizaroni","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yusufaf%2Fquizaroni/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yusufaf%2Fquizaroni/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yusufaf%2Fquizaroni/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yusufaf","download_url":"https://codeload.github.com/yusufaf/quizaroni/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yusufaf%2Fquizaroni/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34645680,"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-22T02:00:06.391Z","response_time":106,"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":["aws-cdk","aws-lambda","cognito","dynamodb","flashcards","monorepo","quiz","react","serverless","study-app","typescript","vite"],"created_at":"2026-06-22T10:31:05.530Z","updated_at":"2026-06-22T10:31:09.072Z","avatar_url":"https://github.com/yusufaf.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003cimg src=\"./logo.png\" width=\"128\" alt=\"Quizaroni Logo\" style=\"border-radius: 20%\" /\u003e\n\u003c/p\u003e\n\n# Quizaroni\n\nA flashcard / quiz study application. Create study sets, attach notes and\nfiles, and study them — backed by a fully serverless AWS backend.\n\nThis is a **pnpm monorepo**:\n\n| Workspace  | Path        | Stack                                                        |\n| ---------- | ----------- | ----------------------------------------------------------- |\n| Frontend   | `apps/web`  | React 18 · TypeScript · Vite · Material UI · AWS Amplify     |\n| Backend    | `apps/api`  | AWS CDK · Lambda · API Gateway (HTTP) · DynamoDB · S3 · SES  |\n\n## Architecture\n\n```\n React (Amplify/Cognito auth)\n        │  HTTPS, Bearer token\n        ▼\n API Gateway (HTTP API) ── Lambda authorizer (verifies Cognito JWT)\n        │\n        ▼\n Lambda handlers ──► DynamoDB (study sets, users)\n                 ──► S3 (file uploads, profile pictures)\n                 ──► SES (feedback / notifications)\n```\n\nEverything in `apps/api` is defined as infrastructure-as-code with the AWS CDK\nand deployed as a single CloudFormation stack.\n\n## Quick start\n\n```bash\npnpm install\n\n# Frontend\ncp apps/web/.env.example apps/web/.env\npnpm dev:web                       # http://localhost:3000\n\n# Backend (requires AWS credentials + CDK bootstrap)\ncp apps/api/.env.example apps/api/.env   # fill in account, region, Cognito IDs\npnpm build:api\npnpm synth:api                     # validate the CloudFormation template\npnpm deploy:api                    # deploy to your AWS account\n```\n\n## Configuration\n\nNo account-specific identifiers or secrets are committed. Supply your own via\nthe untracked `.env` files:\n\n- `apps/api/.env` — AWS account/region, Cognito pool IDs, allowed CORS origins,\n  optional Google OAuth credentials. See `apps/api/.env.example`.\n- `apps/web/.env` — API base URL. See `apps/web/.env.example`.\n\n## Repo scripts\n\nRun from the root:\n\n| Command           | Description                              |\n| ----------------- | ---------------------------------------- |\n| `pnpm dev:web`    | Start the frontend dev server            |\n| `pnpm build`      | Build all workspaces                     |\n| `pnpm synth:api`  | Synthesize the CDK CloudFormation output |\n| `pnpm deploy:api` | Deploy the backend to AWS                |\n| `pnpm test`       | Run tests across workspaces              |\n\n## Contributing\n\nSee [CONTRIBUTING.md](./CONTRIBUTING.md). Commits follow\n[Conventional Commits](https://www.conventionalcommits.org/); releases are\nautomated with release-please.\n\n## Security\n\nFound a vulnerability or a committed secret? See [SECURITY.md](./SECURITY.md).\n\n## License\n\n[MIT](./LICENSE) © 2026 Yusuf Afzal\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyusufaf%2Fquizaroni","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyusufaf%2Fquizaroni","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyusufaf%2Fquizaroni/lists"}