{"id":50973616,"url":"https://github.com/7irelo/aptiverse","last_synced_at":"2026-06-19T05:03:13.185Z","repository":{"id":303132423,"uuid":"994792665","full_name":"7irelo/aptiverse","owner":"7irelo","description":"Aptiverse is an AI-powered student success platform monorepo for South African Grade 12 learners, with a Next.js frontend, .NET 10 microservices, a FastAPI AI service, Rails payments, and Go event/notification services backed by PostgreSQL, Redis, RabbitMQ, Kafka, and Terraform.","archived":false,"fork":false,"pushed_at":"2026-03-19T14:29:22.000Z","size":47915,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-20T06:57:30.605Z","etag":null,"topics":["apache-kafka","docker","dotnet","fastapi","golang","kubernetes","nextjs","rabbitmq","redis","ruby-on-rails","terraform"],"latest_commit_sha":null,"homepage":"http://aptiverse.co.za/","language":"JavaScript","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/7irelo.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-06-02T13:43:39.000Z","updated_at":"2026-03-19T14:30:57.000Z","dependencies_parsed_at":"2025-07-21T08:35:22.312Z","dependency_job_id":null,"html_url":"https://github.com/7irelo/aptiverse","commit_stats":null,"previous_names":["7irelo/aptiverse.backend","7irelo/aptiverse"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/7irelo/aptiverse","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/7irelo%2Faptiverse","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/7irelo%2Faptiverse/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/7irelo%2Faptiverse/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/7irelo%2Faptiverse/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/7irelo","download_url":"https://codeload.github.com/7irelo/aptiverse/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/7irelo%2Faptiverse/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34517752,"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-19T02:00:06.005Z","response_time":61,"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":["apache-kafka","docker","dotnet","fastapi","golang","kubernetes","nextjs","rabbitmq","redis","ruby-on-rails","terraform"],"created_at":"2026-06-19T05:03:12.337Z","updated_at":"2026-06-19T05:03:13.170Z","avatar_url":"https://github.com/7irelo.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Aptiverse\n\nAn AI-powered student success platform built for South African Grade 11 \u0026 12 learners. SBA-aligned practice, predictive mastery, integrated wellbeing, bursary navigation, and verified rewards — framed around growth, not toxic comparison.\n\nThis is a **polyglot monorepo**. Each component below has its own README with build, run, and architecture details — start there.\n\n## Components\n\n| Path | Tech | What it does |\n|---|---|---|\n| [`api/Aptiverse.Api/`](api/Aptiverse.Api/) | .NET 10, ASP.NET Core | Modular monolith — auth (Identity + JWT) plus 14 domain modules (academic-planning, audit, booking, calendar, entitlements, feature-flags, goals, insights, marketplace, mastery, moderation, practice, support, wellbeing) running in one process on port 5100. |\n| [`ui/`](ui/) | Next.js 16, React 19, MUI v7 | Web client — marketing site, auth flow, role-aware dashboards (student, parent, teacher, school admin, tutor, admin). Port 3000. |\n| [`ai-service/`](ai-service/) | Python 3.11, FastAPI, PyTorch | ML inference: practice generation, rubric grading, OCR, pattern analysis. Port 8000. |\n| [`payment-gateway/`](payment-gateway/) | Rails 8, Stripe | Checkout sessions and webhook handling. Port 3001. |\n| [`infrastructure/`](infrastructure/) | Terraform, Docker Compose | AWS IaC (VPC, EKS, RDS, ElastiCache, ALB, Route 53) and local dev stack. |\n\n## Why this shape\n\nThe .NET API is a modular monolith — one process, 15 bounded contexts (1 auth + 14 domain modules). The other components stay separate for genuine technical reasons (different language, different resource profile, async-by-design). Microservice coordination cost isn't worth paying without a team big enough to amortise it. See [`api/Aptiverse.Api/README.md`](api/Aptiverse.Api/README.md) for the full rationale and module map.\n\n## Run the stack\n\nLocal dev — Postgres + Redis in Docker, everything else native (faster iteration):\n\n```bash\n# Start infra\ncd infrastructure\ncp .env.example .env                                # fill in values\ndocker compose -f docker-compose.dev.yml up -d postgres redis\n\n# .NET API\ncd ../api/Aptiverse.Api\ndotnet ef database update                           # apply migrations\ndotnet run                                          # http://localhost:5100\n\n# Frontend\ncd ../../ui\nnpm install\nnpm run dev                                         # http://localhost:3000\n\n# Optional sidecar services (run only what you need)\ncd ../ai-service \u0026\u0026 uvicorn app.main:app --port 8000\ncd ../payment-gateway \u0026\u0026 bin/rails server -p 3001\n```\n\nEmail is sent in-process from the .NET API via AWS SES SMTP — no separate worker. Set `EmailSettings:Server`, `Username`, `Password` in `appsettings.json` (SMTP credentials, not AWS access keys).\n\nFull stack in Docker:\n\n```bash\ndocker compose -f infrastructure/docker-compose.dev.yml \\\n               -f infrastructure/docker-compose.override.yml up\n```\n\n## Documentation\n\n| Doc | Scope |\n|---|---|\n| [`README.md`](README.md) | This file — repo overview |\n| [`CLAUDE.md`](CLAUDE.md) | Repo-wide guidance for AI assistants |\n| [`api/Aptiverse.Api/README.md`](api/Aptiverse.Api/README.md) | .NET API: architecture, modules, RBAC, EF, deployment |\n| [`api/Aptiverse.Api/CLAUDE.md`](api/Aptiverse.Api/CLAUDE.md) | .NET API: code conventions, common tasks, gotchas |\n\n## Status\n\nActive development. One backend host (.NET), one web client (Next.js), three sidecar services for legitimate cross-tech reasons.\n\n## Licence\n\nAll rights reserved.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F7irelo%2Faptiverse","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F7irelo%2Faptiverse","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F7irelo%2Faptiverse/lists"}