Skip to main content
  1. Tags/

Angular

Adding .NET Aspire to an Existing Clean Architecture Project

Deep Dive · Dec 20, 2025 · 10 min read
The infrastructure overhead in microservices projects is real. Setting up databases, wiring service discovery, getting distributed tracing working, managing connection strings across environments—this work hits before you’ve written a line of business logic. On more than one project, I’ve watched the first sprint disappear into Docker Compose files and appsettings drift.
Adding .NET Aspire to an Existing Clean Architecture Project

Elevating Code Quality with Custom GitHub Copilot Instructions

Deep Dive · May 24, 2025 · 15 min read
In today’s fast-paced development landscape, AI coding assistants have become indispensable tools for developers seeking to maintain high-quality code while meeting demanding deadlines. GitHub Copilot stands at the forefront of this revolution, offering intelligent code suggestions that can significantly accelerate development. However, the true power of Copilot lies not just in its base capabilities, but in how effectively it can be customized to align with your specific project standards and best practices.
Elevating Code Quality with Custom GitHub Copilot Instructions

Building an AI-Driven Chat Application with .NET, Azure OpenAI, and Angular

Deep Dive · Dec 7, 2024 · 11 min read
Introduction # Artificial Intelligence is transforming how we build applications, particularly in creating natural, conversational user experiences. This article guides you through building a full-stack AI chat application using .NET on the backend, Angular for the frontend, and Azure OpenAI for powerful language model capabilities, all connected through real-time SignalR communication.
Building an AI-Driven Chat Application with .NET, Azure OpenAI, and Angular

Handling Authorization and Role-Based Access Control (RBAC)

Deep Dive · Dec 1, 2024 · 19 min read
Introduction # Role-Based Access Control (RBAC) is a critical component of secure application design that restricts access to resources based on user roles and permissions. This article explores how the Contact Management Application implements a flexible and maintainable RBAC system that covers both the backend API and frontend Angular application, integrating with JWT authentication to secure endpoints and UI elements while maintaining the separation of concerns that Clean Architecture demands.
Handling Authorization and Role-Based Access Control (RBAC)