├── .claude └── settings.local.json ├── .github └── workflows │ ├── ci-cd-pipeline.yml │ ├── linkcheck.yml │ └── node-azure-deploy.yml ├── .gitignore ├── LICENSE ├── README.md ├── archive ├── ARM Templates │ └── AZ-400-Crash-Course │ │ ├── .vs │ │ └── AZ-400-Crash-Course │ │ │ ├── DesignTimeBuild │ │ │ └── .dtbcache.v2 │ │ │ ├── config │ │ │ └── applicationhost.config │ │ │ └── v16 │ │ │ └── .suo │ │ ├── AZ-400-Crash-Course.sln │ │ ├── Key-Vault │ │ ├── Deploy-AzureResourceGroup.ps1 │ │ ├── Deployment.targets │ │ ├── Key-Vault.deployproj │ │ ├── README.md │ │ ├── azuredeploy.json │ │ └── azuredeploy.parameters.json │ │ ├── Linked-Template │ │ ├── AVSet.json │ │ ├── ConfigDC.json │ │ ├── CreateADC.ps1.zip │ │ ├── Deploy-AzureResourceGroup.ps1 │ │ ├── Deployment.targets │ │ ├── LabSubnet.json │ │ ├── Linked-Template.deployproj │ │ ├── README.md │ │ ├── SetVNetDNS.json │ │ ├── Storage.json │ │ ├── WinServ.json │ │ ├── azuredeploy.json │ │ ├── azuredeploy.parameters.json │ │ ├── confDomainMember.json │ │ └── start.ps1 │ │ ├── Node-Express-App │ │ ├── Deploy-AzureResourceGroup.ps1 │ │ ├── Deployment.targets │ │ ├── Node-Express-App.deployproj │ │ ├── README.md │ │ ├── azuredeploy.json │ │ └── azuredeploy.parameters.json │ │ └── Windows-VM │ │ ├── Deploy-AzureResourceGroup.ps1 │ │ ├── Deployment.targets │ │ ├── GettingStarted-wsvs.md │ │ ├── README.md │ │ ├── Windows-VM.deployproj │ │ ├── azuredeploy.json │ │ ├── azuredeploy.parameters.json │ │ └── images │ │ ├── azdeploy.png │ │ ├── azdeploy2.png │ │ ├── azdeployportal.png │ │ ├── azdeployportal2.png │ │ ├── azgroup.png │ │ ├── azportaldeploy2.png │ │ ├── azportaldeploy3.png │ │ ├── azportaldepoy.png │ │ ├── azportaldepoy2.png │ │ ├── aztemplate.png │ │ ├── aztemplate2.png │ │ ├── aztemplate3.png │ │ ├── azwin.png │ │ ├── azwinlogin.png │ │ ├── off.png │ │ └── off2.png ├── Exam AZ-400_ Microsoft Azure DevOps Solutions Crash Course.pdf ├── az400-course-plan.md ├── code ├── demos │ ├── azure-pipelines-cd │ │ ├── README.md │ │ ├── azure-pipelines.yml │ │ └── release-pipeline.md │ ├── dockerized-app │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── app │ │ │ └── index.html │ │ └── deploy-instructions.md │ └── terraform-aks │ │ ├── README.md │ │ ├── deploy-aks.sh │ │ └── main.tf ├── nodeapp-1 │ ├── .azure │ │ ├── cd.yml │ │ ├── ci.yml │ │ ├── package-promotion.yml │ │ └── push-to-github.yml │ ├── .devcontainer │ │ └── devcontainer.json │ ├── .dockerignore │ ├── .eslintrc.json │ ├── .gitattributes │ ├── .github │ │ ├── dependabot.yml │ │ └── workflows │ │ │ ├── azure.yml │ │ │ └── node.js.yml │ ├── .gitignore │ ├── .mocharc.json │ ├── .npmrc.template │ ├── .nvmrc │ ├── Dockerfile │ ├── LICENSE │ ├── README.md │ ├── app.js │ ├── azure-cli-devops.azcli │ ├── azure-pipelines-2.yml │ ├── azuredeploy.json │ ├── config.js │ ├── debug-solution.txt │ ├── node-express-azure.code-workspace │ ├── package-lock.json │ ├── package.json │ ├── prompt.txt │ ├── public │ │ ├── assets │ │ │ ├── css │ │ │ │ ├── font-awesome.min.css │ │ │ │ ├── images │ │ │ │ │ └── intro.svg │ │ │ │ ├── main.css │ │ │ │ └── noscript.css │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ ├── js │ │ │ │ ├── breakpoints.min.js │ │ │ │ ├── browser.min.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── jquery.scrollex.min.js │ │ │ │ ├── jquery.scrolly.min.js │ │ │ │ ├── main.js │ │ │ │ └── util.js │ │ │ └── sass │ │ │ │ ├── base │ │ │ │ ├── _page.scss │ │ │ │ ├── _reset.scss │ │ │ │ └── _typography.scss │ │ │ │ ├── components │ │ │ │ ├── _actions.scss │ │ │ │ ├── _box.scss │ │ │ │ ├── _button.scss │ │ │ │ ├── _contact.scss │ │ │ │ ├── _features.scss │ │ │ │ ├── _form.scss │ │ │ │ ├── _icon.scss │ │ │ │ ├── _icons.scss │ │ │ │ ├── _image.scss │ │ │ │ ├── _list.scss │ │ │ │ ├── _menu.scss │ │ │ │ ├── _row.scss │ │ │ │ ├── _section.scss │ │ │ │ ├── _split.scss │ │ │ │ ├── _spotlights.scss │ │ │ │ ├── _table.scss │ │ │ │ └── _wrapper.scss │ │ │ │ ├── layout │ │ │ │ ├── _footer.scss │ │ │ │ ├── _header.scss │ │ │ │ ├── _intro.scss │ │ │ │ ├── _sidebar.scss │ │ │ │ └── _wrapper.scss │ │ │ │ ├── libs │ │ │ │ ├── _breakpoints.scss │ │ │ │ ├── _functions.scss │ │ │ │ ├── _html-grid.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _vars.scss │ │ │ │ └── _vendor.scss │ │ │ │ ├── main.scss │ │ │ │ └── noscript.scss │ │ └── images │ │ │ ├── pic01.jpg │ │ │ ├── pic02.jpg │ │ │ ├── pic03.jpg │ │ │ ├── pic04.jpg │ │ │ ├── pic05.jpg │ │ │ └── pic06.jpg │ ├── routes │ │ ├── contact.js │ │ ├── index.js │ │ └── who.js │ ├── server.js │ ├── sqltest.js │ ├── test │ │ ├── contact_test.js │ │ ├── index_test.js │ │ └── who_test.js │ └── views │ │ ├── contact.handlebars │ │ ├── index.handlebars │ │ ├── layouts │ │ └── main.handlebars │ │ └── who.handlebars ├── old-README.md ├── old-resources │ ├── AZ-400-cc-course-outline.txt │ ├── Automation DSC │ │ ├── MakeWebServer.ps1 │ │ ├── TestConfig.ps1 │ │ ├── azure-automation-dsc-powershell.ps1 │ │ └── azure-automation-dsc.ps1 │ ├── Containers │ │ ├── Dockerfile-multi-stage │ │ ├── Dockerfile-single-stage │ │ └── aks.azcli │ ├── Data Migration Tool for Azure DevOps Migration Guide.pdf │ ├── LAMPServer.ps1 │ ├── asp.net-core-webapp-on-azure.yml │ ├── aspnet-core-demo │ │ ├── .gitignore │ │ ├── Data │ │ │ └── RazorPagesMovieContext.cs │ │ ├── LICENSE │ │ ├── Migrations │ │ │ ├── 20181130002652_Initial.Designer.cs │ │ │ ├── 20181130002652_Initial.cs │ │ │ ├── 20181202231124_Rating.Designer.cs │ │ │ ├── 20181202231124_Rating.cs │ │ │ └── RazorPagesMovieContextModelSnapshot.cs │ │ ├── Models │ │ │ ├── Movie.cs │ │ │ ├── Movie1.cs │ │ │ ├── MovieDateFixed.cs │ │ │ ├── MovieDateRating.cs │ │ │ ├── MovieDateRatingDA.cs │ │ │ ├── MovieDateRatingDAmult.cs │ │ │ ├── SeedData.cs │ │ │ └── SeedDataRating.cs │ │ ├── Pages │ │ │ ├── Error.cshtml │ │ │ ├── Error.cshtml.cs │ │ │ ├── Index.cshtml │ │ │ ├── Index.cshtml.cs │ │ │ ├── Movies │ │ │ │ ├── Create.cshtml │ │ │ │ ├── Create.cshtml.cs │ │ │ │ ├── Create2.cshtml │ │ │ │ ├── Delete.cshtml │ │ │ │ ├── Delete.cshtml.cs │ │ │ │ ├── Details.cshtml │ │ │ │ ├── Details.cshtml.cs │ │ │ │ ├── Edit.cshtml │ │ │ │ ├── Edit.cshtml.cs │ │ │ │ ├── Index.cshtml │ │ │ │ ├── Index.cshtml.cs │ │ │ │ ├── Index2.cshtml │ │ │ │ ├── IndexFormGenreNoRating.cshtml │ │ │ │ └── IndexRating.cshtml │ │ │ ├── Privacy.cshtml │ │ │ ├── Privacy.cshtml.cs │ │ │ ├── Shared │ │ │ │ ├── _CookieConsentPartial.cshtml │ │ │ │ ├── _Layout.cshtml │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ ├── Program.cs │ │ ├── README.md │ │ ├── RazorPagesMovie.csproj │ │ ├── Startup.cs │ │ ├── appsettings.json │ │ ├── azure-pipelines.yaml │ │ ├── azuredeploy.json │ │ ├── azuredeploy.parameters.json │ │ └── wwwroot │ │ │ ├── css │ │ │ └── site.css │ │ │ ├── favicon.ico │ │ │ ├── js │ │ │ └── site.js │ │ │ └── lib │ │ │ ├── bootstrap │ │ │ ├── LICENSE │ │ │ └── dist │ │ │ │ ├── css │ │ │ │ ├── bootstrap-grid.css │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ └── bootstrap.css │ │ │ │ └── js │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ └── bootstrap.js │ │ │ ├── jquery-validation-unobtrusive │ │ │ ├── LICENSE.txt │ │ │ └── jquery.validate.unobtrusive.js │ │ │ ├── jquery-validation │ │ │ ├── LICENSE.md │ │ │ └── dist │ │ │ │ ├── additional-methods.js │ │ │ │ └── jquery.validate.js │ │ │ └── jquery │ │ │ ├── LICENSE.txt │ │ │ └── dist │ │ │ └── jquery.js │ ├── aspnet-core-docker-demo │ │ ├── Application │ │ │ ├── .gitattributes │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── Readme.md │ │ │ ├── aspnet-core-dotnet-core.FunctionalTests │ │ │ │ ├── SampleFunctionalTests.cs │ │ │ │ ├── aspnet-core-dotnet-core.FunctionalTests.csproj │ │ │ │ └── functionalTests.runsettings │ │ │ ├── aspnet-core-dotnet-core.UnitTests │ │ │ │ ├── SampleUnitTests.cs │ │ │ │ └── aspnet-core-dotnet-core.UnitTests.csproj │ │ │ ├── aspnet-core-dotnet-core.sln │ │ │ └── aspnet-core-dotnet-core │ │ │ │ ├── Dockerfile │ │ │ │ ├── Pages │ │ │ │ ├── About.cshtml │ │ │ │ ├── About.cshtml.cs │ │ │ │ ├── Contact.cshtml │ │ │ │ ├── Contact.cshtml.cs │ │ │ │ ├── Error.cshtml │ │ │ │ ├── Error.cshtml.cs │ │ │ │ ├── Index.cshtml │ │ │ │ ├── Index.cshtml.cs │ │ │ │ ├── Privacy.cshtml │ │ │ │ ├── Privacy.cshtml.cs │ │ │ │ ├── Shared │ │ │ │ │ ├── _CookieConsentPartial.cshtml │ │ │ │ │ ├── _Layout.cshtml │ │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── _ViewStart.cshtml │ │ │ │ ├── Program.cs │ │ │ │ ├── Startup.cs │ │ │ │ ├── appsettings.Development.json │ │ │ │ ├── appsettings.json │ │ │ │ ├── aspnet-core-dotnet-core.csproj │ │ │ │ ├── bundleconfig.json │ │ │ │ └── wwwroot │ │ │ │ ├── css │ │ │ │ ├── site.css │ │ │ │ └── site.min.css │ │ │ │ ├── favicon.ico │ │ │ │ ├── images │ │ │ │ ├── successCloudNew.svg │ │ │ │ └── tweetThis.svg │ │ │ │ ├── js │ │ │ │ ├── site.js │ │ │ │ └── site.min.js │ │ │ │ └── lib │ │ │ │ ├── bootstrap │ │ │ │ ├── LICENSE │ │ │ │ └── dist │ │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-grid.css │ │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ └── bootstrap.min.css.map │ │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ ├── bootstrap.js.map │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ └── bootstrap.min.js.map │ │ │ │ ├── jquery-validation-unobtrusive │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ │ └── jquery.validate.unobtrusive.min.js │ │ │ │ ├── jquery-validation │ │ │ │ ├── LICENSE.md │ │ │ │ └── dist │ │ │ │ │ ├── additional-methods.js │ │ │ │ │ ├── additional-methods.min.js │ │ │ │ │ ├── jquery.validate.js │ │ │ │ │ └── jquery.validate.min.js │ │ │ │ └── jquery │ │ │ │ ├── LICENSE.txt │ │ │ │ └── dist │ │ │ │ ├── jquery.js │ │ │ │ ├── jquery.min.js │ │ │ │ └── jquery.min.map │ │ ├── ArmTemplates │ │ │ ├── container-webapp-template.json │ │ │ └── containerRegistry-template.json │ │ ├── README.md │ │ └── azure-pipelines.yaml │ ├── az-400-session1-labs.md │ ├── az-400-session2-labs.md │ ├── az400-classroom-topologies.vsdx │ ├── az400-study-topics.txt │ ├── cost-center-tagging │ │ ├── .funcignore │ │ ├── .gitignore │ │ ├── ProcessEvent │ │ │ ├── function.json │ │ │ ├── run.ps1 │ │ │ └── sample.dat │ │ ├── host.json │ │ ├── profile.ps1 │ │ ├── proxies.json │ │ └── requirements.psd1 │ ├── ep20-cover.png │ ├── index.html │ ├── multi-stage-azure-pipelines.yml │ ├── warner-AZ400-slides.pptx │ └── whizlabs.png ├── pipelines │ ├── README.md │ ├── multi-stage-cicd.yml │ └── single-stage-ci.yml ├── scripts │ ├── containerize-app.sh │ ├── deploy-webapp.ps1 │ └── setup-devops-project.ps1 ├── solutions │ ├── azure-pipelines │ │ ├── azure-pipelines.yml │ │ └── templates │ │ │ ├── build-template.yml │ │ │ └── deploy-template.yml │ ├── github-actions │ │ ├── cd-workflow.yml │ │ └── ci-workflow.yml │ └── terraform │ │ ├── main.tf │ │ ├── outputs.tf │ │ └── variables.tf └── src │ └── old-app.txt ├── az-400-demo-environment-setup.md ├── az-400-exam-objectives.md ├── az-400-practice-tests.md ├── az-cli-demo-script.sh ├── az400-course-plan-aug-2025.md ├── az400.code-workspace ├── create-az400-demo-environment.md ├── github-cli-demo-script.sh └── warner-AZ400-slides.pptx /.claude/settings.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/.claude/settings.local.json -------------------------------------------------------------------------------- /.github/workflows/ci-cd-pipeline.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/workflows/linkcheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/.github/workflows/linkcheck.yml -------------------------------------------------------------------------------- /.github/workflows/node-azure-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/.github/workflows/node-azure-deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/README.md -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/.vs/AZ-400-Crash-Course/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/.vs/AZ-400-Crash-Course/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/.vs/AZ-400-Crash-Course/config/applicationhost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/.vs/AZ-400-Crash-Course/config/applicationhost.config -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/.vs/AZ-400-Crash-Course/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/.vs/AZ-400-Crash-Course/v16/.suo -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/AZ-400-Crash-Course.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/AZ-400-Crash-Course.sln -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/Key-Vault/Deploy-AzureResourceGroup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/Key-Vault/Deploy-AzureResourceGroup.ps1 -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/Key-Vault/Deployment.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/Key-Vault/Deployment.targets -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/Key-Vault/Key-Vault.deployproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/Key-Vault/Key-Vault.deployproj -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/Key-Vault/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/Key-Vault/README.md -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/Key-Vault/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/Key-Vault/azuredeploy.json -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/Key-Vault/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/Key-Vault/azuredeploy.parameters.json -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/Linked-Template/AVSet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/Linked-Template/AVSet.json -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/Linked-Template/ConfigDC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/Linked-Template/ConfigDC.json -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/Linked-Template/CreateADC.ps1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/Linked-Template/CreateADC.ps1.zip -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/Linked-Template/Deploy-AzureResourceGroup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/Linked-Template/Deploy-AzureResourceGroup.ps1 -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/Linked-Template/Deployment.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/Linked-Template/Deployment.targets -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/Linked-Template/LabSubnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/Linked-Template/LabSubnet.json -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/Linked-Template/Linked-Template.deployproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/Linked-Template/Linked-Template.deployproj -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/Linked-Template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/Linked-Template/README.md -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/Linked-Template/SetVNetDNS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/Linked-Template/SetVNetDNS.json -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/Linked-Template/Storage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/Linked-Template/Storage.json -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/Linked-Template/WinServ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/Linked-Template/WinServ.json -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/Linked-Template/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/Linked-Template/azuredeploy.json -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/Linked-Template/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/Linked-Template/azuredeploy.parameters.json -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/Linked-Template/confDomainMember.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/Linked-Template/confDomainMember.json -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/Linked-Template/start.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/Linked-Template/start.ps1 -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/Node-Express-App/Deploy-AzureResourceGroup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/Node-Express-App/Deploy-AzureResourceGroup.ps1 -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/Node-Express-App/Deployment.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/Node-Express-App/Deployment.targets -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/Node-Express-App/Node-Express-App.deployproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/Node-Express-App/Node-Express-App.deployproj -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/Node-Express-App/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/Node-Express-App/README.md -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/Node-Express-App/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/Node-Express-App/azuredeploy.json -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/Node-Express-App/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/Node-Express-App/azuredeploy.parameters.json -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/Windows-VM/Deploy-AzureResourceGroup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/Windows-VM/Deploy-AzureResourceGroup.ps1 -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/Windows-VM/Deployment.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/Windows-VM/Deployment.targets -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/Windows-VM/GettingStarted-wsvs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/Windows-VM/GettingStarted-wsvs.md -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/Windows-VM/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/Windows-VM/README.md -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/Windows-VM/Windows-VM.deployproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/Windows-VM/Windows-VM.deployproj -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/Windows-VM/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/Windows-VM/azuredeploy.json -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/Windows-VM/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/Windows-VM/azuredeploy.parameters.json -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/Windows-VM/images/azdeploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/Windows-VM/images/azdeploy.png -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/Windows-VM/images/azdeploy2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/Windows-VM/images/azdeploy2.png -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/Windows-VM/images/azdeployportal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/Windows-VM/images/azdeployportal.png -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/Windows-VM/images/azdeployportal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/Windows-VM/images/azdeployportal2.png -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/Windows-VM/images/azgroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/Windows-VM/images/azgroup.png -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/Windows-VM/images/azportaldeploy2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/Windows-VM/images/azportaldeploy2.png -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/Windows-VM/images/azportaldeploy3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/Windows-VM/images/azportaldeploy3.png -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/Windows-VM/images/azportaldepoy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/Windows-VM/images/azportaldepoy.png -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/Windows-VM/images/azportaldepoy2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/Windows-VM/images/azportaldepoy2.png -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/Windows-VM/images/aztemplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/Windows-VM/images/aztemplate.png -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/Windows-VM/images/aztemplate2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/Windows-VM/images/aztemplate2.png -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/Windows-VM/images/aztemplate3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/Windows-VM/images/aztemplate3.png -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/Windows-VM/images/azwin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/Windows-VM/images/azwin.png -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/Windows-VM/images/azwinlogin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/Windows-VM/images/azwinlogin.png -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/Windows-VM/images/off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/Windows-VM/images/off.png -------------------------------------------------------------------------------- /archive/ARM Templates/AZ-400-Crash-Course/Windows-VM/images/off2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/ARM Templates/AZ-400-Crash-Course/Windows-VM/images/off2.png -------------------------------------------------------------------------------- /archive/Exam AZ-400_ Microsoft Azure DevOps Solutions Crash Course.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/Exam AZ-400_ Microsoft Azure DevOps Solutions Crash Course.pdf -------------------------------------------------------------------------------- /archive/az400-course-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/az400-course-plan.md -------------------------------------------------------------------------------- /archive/code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/code -------------------------------------------------------------------------------- /archive/demos/azure-pipelines-cd/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /archive/demos/azure-pipelines-cd/azure-pipelines.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /archive/demos/azure-pipelines-cd/release-pipeline.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /archive/demos/dockerized-app/Dockerfile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /archive/demos/dockerized-app/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /archive/demos/dockerized-app/app/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /archive/demos/dockerized-app/deploy-instructions.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /archive/demos/terraform-aks/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /archive/demos/terraform-aks/deploy-aks.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /archive/demos/terraform-aks/main.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /archive/nodeapp-1/.azure/cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/.azure/cd.yml -------------------------------------------------------------------------------- /archive/nodeapp-1/.azure/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/.azure/ci.yml -------------------------------------------------------------------------------- /archive/nodeapp-1/.azure/package-promotion.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/.azure/package-promotion.yml -------------------------------------------------------------------------------- /archive/nodeapp-1/.azure/push-to-github.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/.azure/push-to-github.yml -------------------------------------------------------------------------------- /archive/nodeapp-1/.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /archive/nodeapp-1/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/.dockerignore -------------------------------------------------------------------------------- /archive/nodeapp-1/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/.eslintrc.json -------------------------------------------------------------------------------- /archive/nodeapp-1/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/.gitattributes -------------------------------------------------------------------------------- /archive/nodeapp-1/.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/.github/dependabot.yml -------------------------------------------------------------------------------- /archive/nodeapp-1/.github/workflows/azure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/.github/workflows/azure.yml -------------------------------------------------------------------------------- /archive/nodeapp-1/.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /archive/nodeapp-1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/.gitignore -------------------------------------------------------------------------------- /archive/nodeapp-1/.mocharc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/.mocharc.json -------------------------------------------------------------------------------- /archive/nodeapp-1/.npmrc.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/.npmrc.template -------------------------------------------------------------------------------- /archive/nodeapp-1/.nvmrc: -------------------------------------------------------------------------------- 1 | 18.x -------------------------------------------------------------------------------- /archive/nodeapp-1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/Dockerfile -------------------------------------------------------------------------------- /archive/nodeapp-1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/LICENSE -------------------------------------------------------------------------------- /archive/nodeapp-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/README.md -------------------------------------------------------------------------------- /archive/nodeapp-1/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/app.js -------------------------------------------------------------------------------- /archive/nodeapp-1/azure-cli-devops.azcli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/azure-cli-devops.azcli -------------------------------------------------------------------------------- /archive/nodeapp-1/azure-pipelines-2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/azure-pipelines-2.yml -------------------------------------------------------------------------------- /archive/nodeapp-1/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/azuredeploy.json -------------------------------------------------------------------------------- /archive/nodeapp-1/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/config.js -------------------------------------------------------------------------------- /archive/nodeapp-1/debug-solution.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/debug-solution.txt -------------------------------------------------------------------------------- /archive/nodeapp-1/node-express-azure.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/node-express-azure.code-workspace -------------------------------------------------------------------------------- /archive/nodeapp-1/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/package-lock.json -------------------------------------------------------------------------------- /archive/nodeapp-1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/package.json -------------------------------------------------------------------------------- /archive/nodeapp-1/prompt.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /archive/nodeapp-1/public/assets/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/assets/css/font-awesome.min.css -------------------------------------------------------------------------------- /archive/nodeapp-1/public/assets/css/images/intro.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/assets/css/images/intro.svg -------------------------------------------------------------------------------- /archive/nodeapp-1/public/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/assets/css/main.css -------------------------------------------------------------------------------- /archive/nodeapp-1/public/assets/css/noscript.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/assets/css/noscript.css -------------------------------------------------------------------------------- /archive/nodeapp-1/public/assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /archive/nodeapp-1/public/assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /archive/nodeapp-1/public/assets/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/assets/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /archive/nodeapp-1/public/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /archive/nodeapp-1/public/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /archive/nodeapp-1/public/assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /archive/nodeapp-1/public/assets/js/breakpoints.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/assets/js/breakpoints.min.js -------------------------------------------------------------------------------- /archive/nodeapp-1/public/assets/js/browser.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/assets/js/browser.min.js -------------------------------------------------------------------------------- /archive/nodeapp-1/public/assets/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/assets/js/jquery.min.js -------------------------------------------------------------------------------- /archive/nodeapp-1/public/assets/js/jquery.scrollex.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/assets/js/jquery.scrollex.min.js -------------------------------------------------------------------------------- /archive/nodeapp-1/public/assets/js/jquery.scrolly.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/assets/js/jquery.scrolly.min.js -------------------------------------------------------------------------------- /archive/nodeapp-1/public/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/assets/js/main.js -------------------------------------------------------------------------------- /archive/nodeapp-1/public/assets/js/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/assets/js/util.js -------------------------------------------------------------------------------- /archive/nodeapp-1/public/assets/sass/base/_page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/assets/sass/base/_page.scss -------------------------------------------------------------------------------- /archive/nodeapp-1/public/assets/sass/base/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/assets/sass/base/_reset.scss -------------------------------------------------------------------------------- /archive/nodeapp-1/public/assets/sass/base/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/assets/sass/base/_typography.scss -------------------------------------------------------------------------------- /archive/nodeapp-1/public/assets/sass/components/_actions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/assets/sass/components/_actions.scss -------------------------------------------------------------------------------- /archive/nodeapp-1/public/assets/sass/components/_box.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/assets/sass/components/_box.scss -------------------------------------------------------------------------------- /archive/nodeapp-1/public/assets/sass/components/_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/assets/sass/components/_button.scss -------------------------------------------------------------------------------- /archive/nodeapp-1/public/assets/sass/components/_contact.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/assets/sass/components/_contact.scss -------------------------------------------------------------------------------- /archive/nodeapp-1/public/assets/sass/components/_features.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/assets/sass/components/_features.scss -------------------------------------------------------------------------------- /archive/nodeapp-1/public/assets/sass/components/_form.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/assets/sass/components/_form.scss -------------------------------------------------------------------------------- /archive/nodeapp-1/public/assets/sass/components/_icon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/assets/sass/components/_icon.scss -------------------------------------------------------------------------------- /archive/nodeapp-1/public/assets/sass/components/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/assets/sass/components/_icons.scss -------------------------------------------------------------------------------- /archive/nodeapp-1/public/assets/sass/components/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/assets/sass/components/_image.scss -------------------------------------------------------------------------------- /archive/nodeapp-1/public/assets/sass/components/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/assets/sass/components/_list.scss -------------------------------------------------------------------------------- /archive/nodeapp-1/public/assets/sass/components/_menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/assets/sass/components/_menu.scss -------------------------------------------------------------------------------- /archive/nodeapp-1/public/assets/sass/components/_row.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/assets/sass/components/_row.scss -------------------------------------------------------------------------------- /archive/nodeapp-1/public/assets/sass/components/_section.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/assets/sass/components/_section.scss -------------------------------------------------------------------------------- /archive/nodeapp-1/public/assets/sass/components/_split.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/assets/sass/components/_split.scss -------------------------------------------------------------------------------- /archive/nodeapp-1/public/assets/sass/components/_spotlights.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/assets/sass/components/_spotlights.scss -------------------------------------------------------------------------------- /archive/nodeapp-1/public/assets/sass/components/_table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/assets/sass/components/_table.scss -------------------------------------------------------------------------------- /archive/nodeapp-1/public/assets/sass/components/_wrapper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/assets/sass/components/_wrapper.scss -------------------------------------------------------------------------------- /archive/nodeapp-1/public/assets/sass/layout/_footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/assets/sass/layout/_footer.scss -------------------------------------------------------------------------------- /archive/nodeapp-1/public/assets/sass/layout/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/assets/sass/layout/_header.scss -------------------------------------------------------------------------------- /archive/nodeapp-1/public/assets/sass/layout/_intro.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/assets/sass/layout/_intro.scss -------------------------------------------------------------------------------- /archive/nodeapp-1/public/assets/sass/layout/_sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/assets/sass/layout/_sidebar.scss -------------------------------------------------------------------------------- /archive/nodeapp-1/public/assets/sass/layout/_wrapper.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/assets/sass/layout/_wrapper.scss -------------------------------------------------------------------------------- /archive/nodeapp-1/public/assets/sass/libs/_breakpoints.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/assets/sass/libs/_breakpoints.scss -------------------------------------------------------------------------------- /archive/nodeapp-1/public/assets/sass/libs/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/assets/sass/libs/_functions.scss -------------------------------------------------------------------------------- /archive/nodeapp-1/public/assets/sass/libs/_html-grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/assets/sass/libs/_html-grid.scss -------------------------------------------------------------------------------- /archive/nodeapp-1/public/assets/sass/libs/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/assets/sass/libs/_mixins.scss -------------------------------------------------------------------------------- /archive/nodeapp-1/public/assets/sass/libs/_vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/assets/sass/libs/_vars.scss -------------------------------------------------------------------------------- /archive/nodeapp-1/public/assets/sass/libs/_vendor.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/assets/sass/libs/_vendor.scss -------------------------------------------------------------------------------- /archive/nodeapp-1/public/assets/sass/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/assets/sass/main.scss -------------------------------------------------------------------------------- /archive/nodeapp-1/public/assets/sass/noscript.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/assets/sass/noscript.scss -------------------------------------------------------------------------------- /archive/nodeapp-1/public/images/pic01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/images/pic01.jpg -------------------------------------------------------------------------------- /archive/nodeapp-1/public/images/pic02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/images/pic02.jpg -------------------------------------------------------------------------------- /archive/nodeapp-1/public/images/pic03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/images/pic03.jpg -------------------------------------------------------------------------------- /archive/nodeapp-1/public/images/pic04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/images/pic04.jpg -------------------------------------------------------------------------------- /archive/nodeapp-1/public/images/pic05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/images/pic05.jpg -------------------------------------------------------------------------------- /archive/nodeapp-1/public/images/pic06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/public/images/pic06.jpg -------------------------------------------------------------------------------- /archive/nodeapp-1/routes/contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/routes/contact.js -------------------------------------------------------------------------------- /archive/nodeapp-1/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/routes/index.js -------------------------------------------------------------------------------- /archive/nodeapp-1/routes/who.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/routes/who.js -------------------------------------------------------------------------------- /archive/nodeapp-1/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/server.js -------------------------------------------------------------------------------- /archive/nodeapp-1/sqltest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/sqltest.js -------------------------------------------------------------------------------- /archive/nodeapp-1/test/contact_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/test/contact_test.js -------------------------------------------------------------------------------- /archive/nodeapp-1/test/index_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/test/index_test.js -------------------------------------------------------------------------------- /archive/nodeapp-1/test/who_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/test/who_test.js -------------------------------------------------------------------------------- /archive/nodeapp-1/views/contact.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/views/contact.handlebars -------------------------------------------------------------------------------- /archive/nodeapp-1/views/index.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/views/index.handlebars -------------------------------------------------------------------------------- /archive/nodeapp-1/views/layouts/main.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/views/layouts/main.handlebars -------------------------------------------------------------------------------- /archive/nodeapp-1/views/who.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/nodeapp-1/views/who.handlebars -------------------------------------------------------------------------------- /archive/old-README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-README.md -------------------------------------------------------------------------------- /archive/old-resources/AZ-400-cc-course-outline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/AZ-400-cc-course-outline.txt -------------------------------------------------------------------------------- /archive/old-resources/Automation DSC/MakeWebServer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/Automation DSC/MakeWebServer.ps1 -------------------------------------------------------------------------------- /archive/old-resources/Automation DSC/TestConfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/Automation DSC/TestConfig.ps1 -------------------------------------------------------------------------------- /archive/old-resources/Automation DSC/azure-automation-dsc-powershell.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/Automation DSC/azure-automation-dsc-powershell.ps1 -------------------------------------------------------------------------------- /archive/old-resources/Automation DSC/azure-automation-dsc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/Automation DSC/azure-automation-dsc.ps1 -------------------------------------------------------------------------------- /archive/old-resources/Containers/Dockerfile-multi-stage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/Containers/Dockerfile-multi-stage -------------------------------------------------------------------------------- /archive/old-resources/Containers/Dockerfile-single-stage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/Containers/Dockerfile-single-stage -------------------------------------------------------------------------------- /archive/old-resources/Containers/aks.azcli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/Containers/aks.azcli -------------------------------------------------------------------------------- /archive/old-resources/Data Migration Tool for Azure DevOps Migration Guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/Data Migration Tool for Azure DevOps Migration Guide.pdf -------------------------------------------------------------------------------- /archive/old-resources/LAMPServer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/LAMPServer.ps1 -------------------------------------------------------------------------------- /archive/old-resources/asp.net-core-webapp-on-azure.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/asp.net-core-webapp-on-azure.yml -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/.gitignore -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/Data/RazorPagesMovieContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/Data/RazorPagesMovieContext.cs -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/LICENSE -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/Migrations/20181130002652_Initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/Migrations/20181130002652_Initial.Designer.cs -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/Migrations/20181130002652_Initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/Migrations/20181130002652_Initial.cs -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/Migrations/20181202231124_Rating.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/Migrations/20181202231124_Rating.Designer.cs -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/Migrations/20181202231124_Rating.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/Migrations/20181202231124_Rating.cs -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/Migrations/RazorPagesMovieContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/Migrations/RazorPagesMovieContextModelSnapshot.cs -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/Models/Movie.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/Models/Movie.cs -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/Models/Movie1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/Models/Movie1.cs -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/Models/MovieDateFixed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/Models/MovieDateFixed.cs -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/Models/MovieDateRating.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/Models/MovieDateRating.cs -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/Models/MovieDateRatingDA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/Models/MovieDateRatingDA.cs -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/Models/MovieDateRatingDAmult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/Models/MovieDateRatingDAmult.cs -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/Models/SeedData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/Models/SeedData.cs -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/Models/SeedDataRating.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/Models/SeedDataRating.cs -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/Pages/Error.cshtml -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/Pages/Index.cshtml -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/Pages/Movies/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/Pages/Movies/Create.cshtml -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/Pages/Movies/Create.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/Pages/Movies/Create.cshtml.cs -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/Pages/Movies/Create2.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/Pages/Movies/Create2.cshtml -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/Pages/Movies/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/Pages/Movies/Delete.cshtml -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/Pages/Movies/Delete.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/Pages/Movies/Delete.cshtml.cs -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/Pages/Movies/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/Pages/Movies/Details.cshtml -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/Pages/Movies/Details.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/Pages/Movies/Details.cshtml.cs -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/Pages/Movies/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/Pages/Movies/Edit.cshtml -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/Pages/Movies/Edit.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/Pages/Movies/Edit.cshtml.cs -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/Pages/Movies/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/Pages/Movies/Index.cshtml -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/Pages/Movies/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/Pages/Movies/Index.cshtml.cs -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/Pages/Movies/Index2.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/Pages/Movies/Index2.cshtml -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/Pages/Movies/IndexFormGenreNoRating.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/Pages/Movies/IndexFormGenreNoRating.cshtml -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/Pages/Movies/IndexRating.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/Pages/Movies/IndexRating.cshtml -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/Pages/Privacy.cshtml -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/Pages/Privacy.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/Pages/Privacy.cshtml.cs -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/Pages/Shared/_CookieConsentPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/Pages/Shared/_CookieConsentPartial.cshtml -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/Pages/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/Pages/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/Program.cs -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/README.md -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/RazorPagesMovie.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/RazorPagesMovie.csproj -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/Startup.cs -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/appsettings.json -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/azure-pipelines.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/azure-pipelines.yaml -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/azuredeploy.json -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/azuredeploy.parameters.json -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/wwwroot/css/site.css -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/wwwroot/favicon.ico -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/wwwroot/js/site.js -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-demo/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-demo/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/.gitattributes -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/.gitignore -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/LICENSE -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/Readme.md -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core.FunctionalTests/SampleFunctionalTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core.FunctionalTests/SampleFunctionalTests.cs -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core.FunctionalTests/aspnet-core-dotnet-core.FunctionalTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core.FunctionalTests/aspnet-core-dotnet-core.FunctionalTests.csproj -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core.FunctionalTests/functionalTests.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core.FunctionalTests/functionalTests.runsettings -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core.UnitTests/SampleUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core.UnitTests/SampleUnitTests.cs -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core.UnitTests/aspnet-core-dotnet-core.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core.UnitTests/aspnet-core-dotnet-core.UnitTests.csproj -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core.sln -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/Dockerfile -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/Pages/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/Pages/About.cshtml -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/Pages/About.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/Pages/About.cshtml.cs -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/Pages/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/Pages/Contact.cshtml -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/Pages/Contact.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/Pages/Contact.cshtml.cs -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/Pages/Error.cshtml -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/Pages/Index.cshtml -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/Pages/Privacy.cshtml -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/Pages/Privacy.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/Pages/Privacy.cshtml.cs -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/Pages/Shared/_CookieConsentPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/Pages/Shared/_CookieConsentPartial.cshtml -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/Pages/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/Pages/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/Program.cs -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/Startup.cs -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/appsettings.Development.json -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/appsettings.json -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/aspnet-core-dotnet-core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/aspnet-core-dotnet-core.csproj -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/bundleconfig.json -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/css/site.css -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/favicon.ico -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/images/successCloudNew.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/images/successCloudNew.svg -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/images/tweetThis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/images/tweetThis.svg -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/js/site.js -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/Application/aspnet-core-dotnet-core/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/ArmTemplates/container-webapp-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/ArmTemplates/container-webapp-template.json -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/ArmTemplates/containerRegistry-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/ArmTemplates/containerRegistry-template.json -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/README.md: -------------------------------------------------------------------------------- 1 | # ASP.NET Demo App with YAML CI/CD Pipeline Configuration 2 | -------------------------------------------------------------------------------- /archive/old-resources/aspnet-core-docker-demo/azure-pipelines.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/aspnet-core-docker-demo/azure-pipelines.yaml -------------------------------------------------------------------------------- /archive/old-resources/az-400-session1-labs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/az-400-session1-labs.md -------------------------------------------------------------------------------- /archive/old-resources/az-400-session2-labs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/az-400-session2-labs.md -------------------------------------------------------------------------------- /archive/old-resources/az400-classroom-topologies.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/az400-classroom-topologies.vsdx -------------------------------------------------------------------------------- /archive/old-resources/az400-study-topics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/az400-study-topics.txt -------------------------------------------------------------------------------- /archive/old-resources/cost-center-tagging/.funcignore: -------------------------------------------------------------------------------- 1 | .git* 2 | .vscode 3 | local.settings.json 4 | test -------------------------------------------------------------------------------- /archive/old-resources/cost-center-tagging/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/cost-center-tagging/.gitignore -------------------------------------------------------------------------------- /archive/old-resources/cost-center-tagging/ProcessEvent/function.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/cost-center-tagging/ProcessEvent/function.json -------------------------------------------------------------------------------- /archive/old-resources/cost-center-tagging/ProcessEvent/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/cost-center-tagging/ProcessEvent/run.ps1 -------------------------------------------------------------------------------- /archive/old-resources/cost-center-tagging/ProcessEvent/sample.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/cost-center-tagging/ProcessEvent/sample.dat -------------------------------------------------------------------------------- /archive/old-resources/cost-center-tagging/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/cost-center-tagging/host.json -------------------------------------------------------------------------------- /archive/old-resources/cost-center-tagging/profile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/cost-center-tagging/profile.ps1 -------------------------------------------------------------------------------- /archive/old-resources/cost-center-tagging/proxies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/cost-center-tagging/proxies.json -------------------------------------------------------------------------------- /archive/old-resources/cost-center-tagging/requirements.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/cost-center-tagging/requirements.psd1 -------------------------------------------------------------------------------- /archive/old-resources/ep20-cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/ep20-cover.png -------------------------------------------------------------------------------- /archive/old-resources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/index.html -------------------------------------------------------------------------------- /archive/old-resources/multi-stage-azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/multi-stage-azure-pipelines.yml -------------------------------------------------------------------------------- /archive/old-resources/warner-AZ400-slides.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/warner-AZ400-slides.pptx -------------------------------------------------------------------------------- /archive/old-resources/whizlabs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/old-resources/whizlabs.png -------------------------------------------------------------------------------- /archive/pipelines/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/pipelines/README.md -------------------------------------------------------------------------------- /archive/pipelines/multi-stage-cicd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/pipelines/multi-stage-cicd.yml -------------------------------------------------------------------------------- /archive/pipelines/single-stage-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/archive/pipelines/single-stage-ci.yml -------------------------------------------------------------------------------- /archive/scripts/containerize-app.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /archive/scripts/deploy-webapp.ps1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /archive/scripts/setup-devops-project.ps1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /archive/solutions/azure-pipelines/azure-pipelines.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /archive/solutions/azure-pipelines/templates/build-template.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /archive/solutions/azure-pipelines/templates/deploy-template.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /archive/solutions/github-actions/cd-workflow.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /archive/solutions/github-actions/ci-workflow.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /archive/solutions/terraform/main.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /archive/solutions/terraform/outputs.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /archive/solutions/terraform/variables.tf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /archive/src/old-app.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /az-400-demo-environment-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/az-400-demo-environment-setup.md -------------------------------------------------------------------------------- /az-400-exam-objectives.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/az-400-exam-objectives.md -------------------------------------------------------------------------------- /az-400-practice-tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/az-400-practice-tests.md -------------------------------------------------------------------------------- /az-cli-demo-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/az-cli-demo-script.sh -------------------------------------------------------------------------------- /az400-course-plan-aug-2025.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/az400-course-plan-aug-2025.md -------------------------------------------------------------------------------- /az400.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/az400.code-workspace -------------------------------------------------------------------------------- /create-az400-demo-environment.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /github-cli-demo-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/github-cli-demo-script.sh -------------------------------------------------------------------------------- /warner-AZ400-slides.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/az400/HEAD/warner-AZ400-slides.pptx --------------------------------------------------------------------------------