A hardened full-stack foundation designed to be safely extended by AI.
QuickApp is an opinionated Angular 21 + ASP.NET Core 10 starter that solves the boring, fragile, and security-sensitive parts of modern web applications so that AI tools (ChatGPT, Copilot, Claude, Cursor, etc.) can safely build on top of it.
Stop letting AI hallucinate your Auth and DB logic—give it a production-grade foundation to build on.
AI can generate code fast. It is also very good at:
- ✅ Generating new features
- ✅ Repeating existing patterns
- ✅ Filling in CRUD features
- ✅ Extending UI and API layers
AI is not good at:
- ❌ Designing secure authentication flows
- ❌ Maintaining architectural consistency over time
- ❌ Enforcing authorization rules correctly
- ❌ Making long-lived projects stable
QuickApp provides a known-good foundation where those hard problems are already solved. You start with QuickApp, then let AI extend the application inside guardrails.
Think of it as:
The boring, correct core that lets AI do the exciting work without breaking everything.
QuickApp provides a standardized foundation that gives your chosen AI a set of "Laws" to follow. The AI's output becomes 10x more reliable because it isn't guessing the infrastructure; it's just filling in the features.
- Secure auth already done correctly - OpenIddict/OAuth2 with JWT tokens, refresh token handling, and proper claims management
- Authorization patterns already enforced - Role and permission-based policies with custom authorization handlers
- Error handling, logging, validation already wired - Centralized patterns that AI-generated code automatically inherits
- Consistent structure - One obvious way to add features, making AI prompts predictable
AI then fills in features inside these guardrails, not by inventing new patterns.
QuickApp is intentionally structured so AI tools can extend it safely and predictably:
- Explicit patterns - BaseEntity, BaseApiController, EndpointBase service patterns that AI can follow
- Predictable folder structure - Controllers, Services, ViewModels, Components organized consistently
- One preferred way - Clear conventions reduce AI guesswork
AI performs best when the rules are clear. QuickApp makes the rules boring and obvious.
- ✅ JWT-based authentication with OpenIddict/OAuth2
- ✅ Role and permission-based authorization with custom policies and handlers
- ✅ Clean API layering - BaseApiController with consistent error handling
- ✅ DTO patterns - AutoMapper integration for ViewModels
- ✅ Centralized validation - Model sanitization and error handling
- ✅ Entity Framework Core - Code First migrations with audit trails
- ✅ Repository and Unit of Work patterns - Structured data access
- ✅ Swagger/OpenAPI - Auto-generated API documentation
- ✅ Logging and configuration - Already wired and ready
- ✅ Authentication and authorization guards - Route protection built-in
- ✅ User and role management UI - Complete admin interface
- ✅ Consistent service patterns - EndpointBase with automatic token refresh
- ✅ Structured component architecture - Standalone components with lazy loading
- ✅ Bootstrap 5 theming - Responsive design out of the box
- ✅ Internationalization - Multi-language support
- ✅ Token management - Automatic refresh token handling
- ✅ Opinionated but extensible - Clear patterns, easy to extend
- ✅ One obvious way - Reduces decision fatigue
- ✅ AI-friendly patterns - Structure that AI tools can reliably follow
# Clone the repository
git clone https://github.com/emonney/QuickApp.git
cd QuickApp
# Restore dependencies
dotnet restore
cd quickapp.client
npm install
# Run the application
# Backend: F5 or dotnet run
# Frontend: npm startVerify authentication, roles, and base features work.
Use prompts like:
"Add a new
Invoiceentity following the existingProductpattern (API, DTO, Angular service, and UI)."
"Add role-based access so only
Adminusers can create or delete invoices."
"Create a new Angular component for invoice management that matches the existing customers component structure."
- AI fills in features following QuickApp's patterns
- QuickApp ensures structure, security, and consistency
- You review and refine, not rebuild from scratch
- Patterns are explicit - BaseEntity, BaseApiController, EndpointBase show AI exactly what to follow
- Folder structure is predictable - Controllers, Services, ViewModels, Components in expected places
- There is one preferred way - Less ambiguity = better AI output
- ✅ A production-ready foundation
- ✅ A stable substrate for AI code generation
- ✅ A reference architecture you can trust
- ✅ Guardrails instead of scaffolding
- ✅ The perfect context-base for Claude, Copilot, and Cursor
- ❌ A replacement for AI tools
- ❌ A magic generator that writes your entire app
- ❌ A one-click solution for every use case
- ❌ Just another starter template
- 🎯 Developers using AI to accelerate full-stack development
- 🎯 Teams that want speed without architectural chaos
- 🎯 Solo developers who don't trust AI with auth and security
- 🎯 Enterprise projects that need predictable structure
- 🎯 Anyone tired of AI-generated codebases that slowly collapse under their own weight
git clone https://github.com/emonney/QuickApp.gitInstall from the Visual Studio Marketplace and use File → New Project → Web → QuickApp.
-
Restore dependencies:
# Backend dotnet restore # Frontend cd quickapp.client npm install
-
Configure database connection in
appsettings.json -
Run migrations:
dotnet ef database update
-
Launch:
- Backend:
F5ordotnet runfromQuickApp.Server - Frontend:
npm startfromquickapp.client
- Backend:
Administrator Account:
- Username:
admin - Email:
admin@ebenmonney.com - Password:
tempP@ss123
Standard Account:
- Username:
user - Email:
user@ebenmonney.com - Password:
tempP@ss123
Note: Change these passwords immediately in production!
Always include this in your AI prompts:
Reference the AI rules files in the ai-rules/ folder:
- ai-rules/AI_RULES_BACKEND.md for ASP.NET Core backend patterns
- ai-rules/AI_RULES_FRONTEND.md for Angular frontend patterns
- ai-rules/AI_RULES_OVERVIEW.md for quick reference
Follow the exact patterns and conventions documented in these files.
When using AI tools with QuickApp, reference existing patterns explicitly:
- ✅ "Reference ai-rules/AI_RULES_BACKEND.md" - Comprehensive backend patterns and rules
- ✅ "Reference ai-rules/AI_RULES_FRONTEND.md" - Complete Angular frontend patterns
- ✅ "Follow the existing entity pattern" - Reference
Product.csorCustomer.cs - ✅ "Match the authorization approach used in Users" - Point to
UserAccountController.cs - ✅ "Reuse the Angular service and component conventions" - Reference
AccountEndpointorCustomersComponent - ✅ "Use the same DTO pattern as ProductVM" - Show the ViewModel structure
- ✅ "Follow the BaseApiController error handling pattern" - Reference the base controller
Add a new Invoice entity with full CRUD operations following QuickApp patterns.
Reference:
- ai-rules/AI_RULES_BACKEND.md for backend patterns
- ai-rules/AI_RULES_FRONTEND.md for frontend patterns
Create:
1. Entity (Invoice.cs) inheriting BaseEntity
2. ViewModel (InvoiceVM.cs) with validator
3. Service interface and implementation
4. Controller with CRUD endpoints
5. AutoMapper configuration
6. Angular model interface
7. Angular endpoint service
8. Angular component with list view
9. Route configuration
Follow the exact patterns from Customer/Product examples.
Clear prompts + stable foundation + comprehensive rules = fewer rewrites.
- ASP.NET Core 10 - Cross-platform web framework
- Entity Framework Core - Code First ORM
- OpenIddict - OAuth2/OIDC authentication
- AutoMapper - Object-to-object mapping
- Swagger/OpenAPI - API documentation
- Angular 21 - Modern web framework
- TypeScript - Type-safe JavaScript
- Bootstrap 5 - Responsive UI framework
- RxJS - Reactive programming
QuickApp embraces AI-assisted development without pretending AI replaces engineering discipline.
The goal is simple:
- Humans decide architecture - You choose QuickApp's patterns
- QuickApp enforces it - Structure and security are built-in
- AI does the repetitive work - Features, CRUD, UI components
Stable architecture that resists AI-generated spaghetti.
Minimizes rework when AI code gets it half-right.
- Support Forum
- GitHub Issues
- Become a Sponsor - Get access to PRO/STANDARD versions and priority support
QuickApp is actively maintained on GitHub. You can support it by:
- ⭐ Starring the repository
- 💰 Sponsoring on GitHub
- ⭐ Rating on Visual Studio Marketplace
- 🔧 Submitting pull requests
- 💡 Suggesting improvements
- 📢 Sharing with others
Released under the MIT License.
If you are tired of AI-generated codebases that slowly collapse under their own weight, start from something solid.

