Demo project for the session "From user story to release, powered by AI" at SharpCoding 2026.
This is a sample e-commerce platform for casual clothing, built entirely with AI-assisted development to demonstrate a complete workflow from user story to production release.
The session explores how AI tools can drive the entire software development lifecycle: writing user stories, generating code, running tests, performing code reviews, and deploying to production. ClaudeClothes is the live example used throughout the talk.
- .NET 8 / Blazor Server / Entity Framework Core 9
- SQL Server 2022 (Azure SQL for prod)
- NUnit for testing
- Azure App Service for deployment
Prerequisites: .NET 8 SDK, SQL Server (local or Docker)
dotnet restore
dotnet build
dotnet run --project src/ClaudeClothes.WebApp available at: https://localhost:5001
dotnet test# Add migration
cd src/ClaudeClothes.Infrastructure
dotnet ef migrations add MigrationName --startup-project ../ClaudeClothes.Web
# Apply migration
dotnet ef database update --startup-project ../ClaudeClothes.WebSharpCoding 2026 - conf.sharpcoding.it