Real-World Projects

Build Real Projects. Ship Real Code.

Step-by-step build guides for production projects. Clone, set up, run, and understand every line — not just tutorials.

11 projects availableFull setup guidesOpen source
AI & MLadvanced Open Source

MedScribe AI

Local-first AI clinical documentation — speech to structured FHIR notes

Python 3.10FastAPIPydantic v2SQLAlchemy 2.0 (async)React 19TypeScript+11 more
  • Local speech-to-text with faster-whisper — audio never leaves the server
  • Structured SOAP note generation with local LLM (Ollama)
  • 5 clinical specialty templates: GP, psychiatry, surgery, emergency, pediatrics
2–3 hours to set up locallyView Guide
Full Stackintermediate Open Source

AI Notes App

Azure-native notes app with GPT-4o-mini AI features, Clean Architecture, and full CI/CD to Azure

ASP.NET Core Web APIC#Entity Framework CoreAzure SQL DatabaseAzure OpenAI (GPT-4o-mini)Azure App Service+9 more
  • Create, edit, delete, and pin notes with live character counter and input validation
  • Instant search across all notes (press / to focus)
  • AI: generate a full note from just a title via Azure OpenAI GPT-4o-mini
1–2 hours to run locallyView Guide
Healthcareadvanced Open Source

Enterprise Verification System

Production KYC/KYP microservice — AI confidence scoring, human-in-the-loop review, state machines, and GDPR compliance

Python 3.11+FastAPISQLAlchemy 2.0 (async)Pydantic v2pydantic-settingsaiosqlite (dev)+9 more
  • AI confidence scoring on submitted documents — never makes the final decision
  • Human-in-the-loop review: admin approves or rejects with reason
  • Strict state machine: PENDING → IN_REVIEW → APPROVED / REJECTED — no invalid transitions
1–2 hours to run standaloneView Guide
Backendintermediate Open Source

TaskFlow API

Production .NET REST API with EF Core, JWT auth, and PostgreSQL

ASP.NET Core (.NET 8)Minimal APIEF Core 8PostgreSQLJWTFluentValidation+3 more
  • Minimal API with endpoint groups and typed results
  • EF Core with PostgreSQL, migrations, and async queries
  • JWT authentication with 15-min access + rotating refresh tokens
3–4 hours to set upView Guide
Backendintermediate Open Source

NotifyHub

Real-time notifications with SignalR, Hangfire background jobs, and Redis

ASP.NET Core (.NET 8)SignalRHangfireRedisStackExchange.RedisSendGrid+3 more
  • Real-time push notifications to browser via SignalR WebSockets
  • Fire-and-forget email notifications with Hangfire
  • Scheduled digest emails with Hangfire recurring jobs
2–3 hours to set upView Guide
Backendadvanced Open Source

MicroMart

Microservices e-commerce platform with RabbitMQ, YARP gateway, and Docker

ASP.NET Core (.NET 8)YARP (API Gateway)RabbitMQMassTransitEF CorePostgreSQL+4 more
  • 4 independent microservices: Catalog, Orders, Inventory, Notifications
  • YARP API gateway — single entry point for all services
  • Async messaging with RabbitMQ + MassTransit (Publish/Subscribe)
3–5 hours to set upView Guide
Frontendintermediate

Angular TaskBoard

Full-featured task board SPA — Angular 17 + NgRx + Reactive Forms + REST API

Angular 17TypeScriptNgRx StoreNgRx EffectsAngular RouterReactive Forms+4 more
  • Kanban board with drag-and-drop columns (Todo / In Progress / Done)
  • Create, edit, and delete tasks with reactive forms and inline validation
  • NgRx Store for board state — actions, reducers, selectors, effects
4–6 hoursView Guide
Backendintermediate Open Source

CleanArch Starter

Production-ready Clean Architecture template with CQRS, MediatR, and EF Core

ASP.NET Core (.NET 8)Clean ArchitectureCQRSMediatREF Core 8PostgreSQL+6 more
  • 4-layer Clean Architecture: Domain, Application, Infrastructure, API
  • CQRS with MediatR — Commands, Queries, and Notifications separated
  • FluentValidation as a MediatR pipeline behavior (no controller validation code)
1–2 hours to set upView Guide
Backendintermediate Open Source

AuthVault

Complete authentication system with ASP.NET Core Identity, JWT, and OAuth2

ASP.NET Core (.NET 8)ASP.NET Core IdentityJWTRefresh TokensOAuth2 (Google, GitHub)EF Core 8+4 more
  • ASP.NET Core Identity for user management (register, login, lockout)
  • JWT access tokens (15-minute expiry) + rotating refresh tokens
  • Google and GitHub OAuth2 social login
2–3 hours to set upView Guide
AI & MLadvanced Open Source

.NET RAG Chat

Retrieval-Augmented Generation pipeline in C# with Azure OpenAI and Azure AI Search

ASP.NET Core (.NET 8)Semantic KernelAzure OpenAIAzure AI Search (vector index)Azure Blob StorageEF Core 8+4 more
  • Document ingestion: PDF, Word, Markdown → chunked → embedded → indexed
  • Vector search with Azure AI Search (HNSW index)
  • Hybrid search: semantic + keyword for better retrieval accuracy
2–4 hours to set up (requires Azure subscription)View Guide
DevOpsadvanced Open Source

Zero-to-Production Pipeline

Deploy a .NET API to Azure with Terraform, GitHub Actions, and AKS

Azure Kubernetes Service (AKS)TerraformGitHub ActionsDockerHelmAzure Container Registry+4 more
  • Terraform modules for AKS, ACR, PostgreSQL, Redis, Key Vault
  • Multi-stage Docker build (build → publish → runtime image, <50 MB final)
  • GitHub Actions pipeline: lint → test → build → push → deploy
4–6 hours (requires Azure subscription)View Guide

🚀

More Projects Coming Soon

Upcoming: E-commerce API with .NET & Redis · Real-time Chat with SignalR · RAG Document Q&A · CI/CD Pipeline from Scratch