Posts

Showing posts from March, 2024

Deploying ASP.NET Core 6 to Azure App Services

https://www.pluralsight.com/courses/asp-dot-net-core-6-azure-app-services-deploying by Neil Morrissey Course Overview Course Overview Understanding Azure App Service Version Check and Introduction Azure App Service Hosting Features Azure App Service Development Features Create an App Service Plan Create a Web App Exploring the Web App Deployment Slots Authentication to App Service Exploring the Kudu Portal Deploying ASP.NET Core Application to App Service Understanding Deployment to App Service Create Sample Project Publish from Visual Studio Importing the Publish Profile from App Service how to download a publish profile which can be used in visual studio Publish Using Zip Deploy Mount Zip File Using 'Run From Package' Publish Using FTP Publish to the Remote Git Repo in App Service using local git with azure app service  Create a Container App Deploy Container Using Visual Studio Deploy Container Using the Azure CLI Configure App Service to Pull Container Image from ACR Dev...

Angular Routing and Navigation Playbook

Image
https://www.pluralsight.com/courses/angular-routing-navigation-playbook by Lara Newsom Course Overview Course Overview Course Introduction and Code Examples Course Introduction and Code Examples Basic Angular Routing Setup Introduction to Angular Routing Discussion: Angular RouterModule Exports Demo: Bootstrap Angular RouterModule Discussion: Declaring Routes angular has tow route path match strategies: prefix based or full match prefix is the default Demo: Declaring Default and Home Routes two options for declaring a default route: {path: ' ', componenet: DefaultComponent} {path: ' ', redirectTo: 'home', pathMatch: 'full'} Discussion: Child Routes and Route Order Demo: Declaring a Wildcard Route wild card routes is: path: '**' to enabled logging all navigation events to the console, enable tracing Demo: Hooking into Router Events Routing in Standalone Component Applications Introduction to Standalone Components and Routing Demo: Bootstrapping Ro...

Study guide for Exam AZ-305: Designing Microsoft Azure Infrastructure Solutions

Design identity, governance, and monitoring solutions (25–30%) Design solutions for logging and monitoring Recommend a logging solution Recommend a solution for routing logs Recommend a monitoring solution Design authentication and authorization solutions Recommend an authentication solution Recommend an identity management solution Recommend a solution for authorizing access to Azure resources Recommend a solution to manage secrets, certificates, and keys Design governance Recommend a structure for management groups, subscriptions, and resource groups, and a strategy for resource tagging Recommend a solution for managing compliance Recommend a solution for identity governance Design data storage solutions (20–25%) Design data storage solutions for relational data Recommend a solution for storing relational data Recommend a database service tier and compute tier Recommend a solution for database scalability Recommend a solution for data protection Design data storage solutions for semi...

Mastering Git

https://app.pluralsight.com/library/courses/master-git/table-of-contents by Paolo Perrotta Module 1: Course Overview Course Overview Module 2: The Four Areas: Introduction Version Check About This Training A Note About the Command Line Introducing the Four Areas The Working Area The Repository The Index Module 3: The Four Areas: Basic Workflow Revisiting the Basics Moving Data to the Right Moving Data to the Left Removing Files Renaming Files A Quick Summary Module 4: The Four Areas: Git Reset Understanding Reset A Reset Example More Reset Examples Module 5: The Four Areas: Advanced Tools Stashing Data Solving Conflicts Working with Paths Committing Parts of a File Introducing Switch and Restore Git Is a Toolbox Module 6: History: Exploring the Past Becoming a History Surgeon Referencing Commits to show changes in a commit: git show HEAD to show changes in a commit parent: git show HEAD^ Tracking Changes in History Browsing the Log Module 7: History: Fixing Mistakes Reviewing the Golde...