├── .DS_Store ├── README.md ├── ckad.md ├── education ├── containers │ ├── .DS_Store │ ├── demos │ │ ├── Readme.md │ │ ├── healthcheck │ │ │ ├── Dockerfile │ │ │ └── app.js │ │ ├── webapp-webapi-aspnetcore │ │ │ ├── docker-compose.yml │ │ │ ├── mywebapi │ │ │ │ ├── Controllers │ │ │ │ │ ├── QuotesController.cs │ │ │ │ │ └── ValuesController.cs │ │ │ │ ├── Dockerfile │ │ │ │ ├── Program.cs │ │ │ │ ├── Startup.cs │ │ │ │ ├── appsettings.Development.json │ │ │ │ ├── appsettings.json │ │ │ │ ├── bin │ │ │ │ │ └── Debug │ │ │ │ │ │ └── netcoreapp1.1 │ │ │ │ │ │ ├── mywebapi.deps.json │ │ │ │ │ │ ├── mywebapi.dll │ │ │ │ │ │ ├── mywebapi.pdb │ │ │ │ │ │ ├── mywebapi.runtimeconfig.dev.json │ │ │ │ │ │ └── mywebapi.runtimeconfig.json │ │ │ │ ├── mywebapi.csproj │ │ │ │ └── obj │ │ │ │ │ ├── Debug │ │ │ │ │ └── netcoreapp1.1 │ │ │ │ │ │ ├── CoreCompileInputs.cache │ │ │ │ │ │ ├── mywebapi.AssemblyInfo.cs │ │ │ │ │ │ ├── mywebapi.csproj.FileListAbsolute.txt │ │ │ │ │ │ ├── mywebapi.dll │ │ │ │ │ │ └── mywebapi.pdb │ │ │ │ │ ├── mywebapi.csproj.nuget.g.props │ │ │ │ │ ├── mywebapi.csproj.nuget.g.targets │ │ │ │ │ └── project.assets.json │ │ │ └── mywebapp │ │ │ │ ├── .bowerrc │ │ │ │ ├── .gitignore │ │ │ │ ├── Controllers │ │ │ │ └── HomeController.cs │ │ │ │ ├── Dockerfile │ │ │ │ ├── Program.cs │ │ │ │ ├── Startup.cs │ │ │ │ ├── Views │ │ │ │ ├── Home │ │ │ │ │ ├── About.cshtml │ │ │ │ │ ├── Contact.cshtml │ │ │ │ │ ├── Index.cshtml │ │ │ │ │ └── Quotes.cshtml │ │ │ │ ├── Shared │ │ │ │ │ ├── Error.cshtml │ │ │ │ │ └── _Layout.cshtml │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ └── _ViewStart.cshtml │ │ │ │ ├── appsettings.Development.json │ │ │ │ ├── appsettings.json │ │ │ │ ├── bower.json │ │ │ │ ├── bundleconfig.json │ │ │ │ ├── mywebapp.csproj │ │ │ │ └── wwwroot │ │ │ │ ├── css │ │ │ │ ├── site.css │ │ │ │ └── site.min.css │ │ │ │ ├── favicon.ico │ │ │ │ ├── images │ │ │ │ ├── banner1.svg │ │ │ │ ├── banner2.svg │ │ │ │ ├── banner3.svg │ │ │ │ └── banner4.svg │ │ │ │ ├── js │ │ │ │ ├── site.js │ │ │ │ └── site.min.js │ │ │ │ └── lib │ │ │ │ ├── bootstrap │ │ │ │ ├── .bower.json │ │ │ │ ├── LICENSE │ │ │ │ └── dist │ │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ ├── bootstrap-theme.min.css.map │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ └── bootstrap.min.css.map │ │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ └── npm.js │ │ │ │ ├── jquery-validation-unobtrusive │ │ │ │ ├── .bower.json │ │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ │ └── jquery.validate.unobtrusive.min.js │ │ │ │ ├── jquery-validation │ │ │ │ ├── .bower.json │ │ │ │ ├── LICENSE.md │ │ │ │ └── dist │ │ │ │ │ ├── additional-methods.js │ │ │ │ │ ├── additional-methods.min.js │ │ │ │ │ ├── jquery.validate.js │ │ │ │ │ └── jquery.validate.min.js │ │ │ │ └── jquery │ │ │ │ ├── .bower.json │ │ │ │ ├── LICENSE.txt │ │ │ │ └── dist │ │ │ │ ├── jquery.js │ │ │ │ ├── jquery.min.js │ │ │ │ └── jquery.min.map │ │ └── webapp-webapi-aspnetcore2.0 │ │ │ ├── .DS_Store │ │ │ ├── UI-ACR.yaml │ │ │ ├── UI-Public-Docker-Registry.yaml │ │ │ ├── docker-compose.yml │ │ │ ├── webapi2.0 │ │ │ ├── .DS_Store │ │ │ ├── Controllers │ │ │ │ ├── BusinessController.cs │ │ │ │ └── ValuesController.cs │ │ │ ├── Dockerfile │ │ │ ├── Program.cs │ │ │ ├── Program.cs] │ │ │ ├── Startup.cs │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ ├── bin │ │ │ │ └── Debug │ │ │ │ │ └── netcoreapp2.0 │ │ │ │ │ ├── webapi2.0.deps.json │ │ │ │ │ ├── webapi2.0.dll │ │ │ │ │ ├── webapi2.0.pdb │ │ │ │ │ ├── webapi2.0.runtimeconfig.dev.json │ │ │ │ │ └── webapi2.0.runtimeconfig.json │ │ │ ├── obj │ │ │ │ ├── Debug │ │ │ │ │ └── netcoreapp2.0 │ │ │ │ │ │ ├── microsoft.aspnetcore.mvc.razor.viewcompilation.rsp │ │ │ │ │ │ ├── webapi2.0.AssemblyInfo.cs │ │ │ │ │ │ ├── webapi2.0.AssemblyInfoInputs.cache │ │ │ │ │ │ ├── webapi2.0.PrecompiledViews.dll │ │ │ │ │ │ ├── webapi2.0.PrecompiledViews.pdb │ │ │ │ │ │ ├── webapi2.0.csproj.CoreCompileInputs.cache │ │ │ │ │ │ ├── webapi2.0.csproj.FileListAbsolute.txt │ │ │ │ │ │ ├── webapi2.0.dll │ │ │ │ │ │ └── webapi2.0.pdb │ │ │ │ ├── project.assets.json │ │ │ │ ├── webapi2.0.csproj.nuget.cache │ │ │ │ ├── webapi2.0.csproj.nuget.g.props │ │ │ │ └── webapi2.0.csproj.nuget.g.targets │ │ │ ├── published │ │ │ │ ├── appsettings.Development.json │ │ │ │ ├── appsettings.json │ │ │ │ ├── published │ │ │ │ │ ├── appsettings.Development.json │ │ │ │ │ ├── appsettings.json │ │ │ │ │ ├── published │ │ │ │ │ │ ├── appsettings.Development.json │ │ │ │ │ │ ├── appsettings.json │ │ │ │ │ │ ├── published │ │ │ │ │ │ │ ├── appsettings.Development.json │ │ │ │ │ │ │ ├── appsettings.json │ │ │ │ │ │ │ ├── published │ │ │ │ │ │ │ │ ├── appsettings.Development.json │ │ │ │ │ │ │ │ ├── appsettings.json │ │ │ │ │ │ │ │ ├── web.config │ │ │ │ │ │ │ │ ├── webapi2.0.deps.json │ │ │ │ │ │ │ │ └── webapi2.0.runtimeconfig.json │ │ │ │ │ │ │ ├── web.config │ │ │ │ │ │ │ ├── webapi2.0.deps.json │ │ │ │ │ │ │ └── webapi2.0.runtimeconfig.json │ │ │ │ │ │ ├── web.config │ │ │ │ │ │ ├── webapi2.0.deps.json │ │ │ │ │ │ └── webapi2.0.runtimeconfig.json │ │ │ │ │ ├── web.config │ │ │ │ │ ├── webapi2.0.deps.json │ │ │ │ │ └── webapi2.0.runtimeconfig.json │ │ │ │ ├── web.config │ │ │ │ ├── webapi2.0.PrecompiledViews.dll │ │ │ │ ├── webapi2.0.PrecompiledViews.pdb │ │ │ │ ├── webapi2.0.deps.json │ │ │ │ ├── webapi2.0.dll │ │ │ │ ├── webapi2.0.pdb │ │ │ │ └── webapi2.0.runtimeconfig.json │ │ │ └── webapi2.0.csproj │ │ │ └── webapp2.0 │ │ │ ├── .DS_Store │ │ │ ├── .bowerrc │ │ │ ├── Controllers │ │ │ └── HomeController.cs │ │ │ ├── Dockerfile │ │ │ ├── Models │ │ │ └── ErrorViewModel.cs │ │ │ ├── Program.cs │ │ │ ├── Startup.cs │ │ │ ├── Views │ │ │ ├── .DS_Store │ │ │ ├── Home │ │ │ │ ├── API.cshtml │ │ │ │ ├── About.cshtml │ │ │ │ ├── Contact.cshtml │ │ │ │ └── Index.cshtml │ │ │ ├── Shared │ │ │ │ ├── Error.cshtml │ │ │ │ ├── _Layout.cshtml │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ ├── bin │ │ │ └── Debug │ │ │ │ └── netcoreapp2.0 │ │ │ │ ├── webapp2.0.deps.json │ │ │ │ ├── webapp2.0.dll │ │ │ │ ├── webapp2.0.pdb │ │ │ │ ├── webapp2.0.runtimeconfig.dev.json │ │ │ │ └── webapp2.0.runtimeconfig.json │ │ │ ├── bower.json │ │ │ ├── bundleconfig.json │ │ │ ├── obj │ │ │ ├── Debug │ │ │ │ └── netcoreapp2.0 │ │ │ │ │ ├── microsoft.aspnetcore.mvc.razor.viewcompilation.rsp │ │ │ │ │ ├── webapp2.0.AssemblyInfo.cs │ │ │ │ │ ├── webapp2.0.AssemblyInfoInputs.cache │ │ │ │ │ ├── webapp2.0.PrecompiledViews.dll │ │ │ │ │ ├── webapp2.0.PrecompiledViews.pdb │ │ │ │ │ ├── webapp2.0.csproj.CoreCompileInputs.cache │ │ │ │ │ ├── webapp2.0.csproj.FileListAbsolute.txt │ │ │ │ │ ├── webapp2.0.dll │ │ │ │ │ └── webapp2.0.pdb │ │ │ ├── project.assets.json │ │ │ ├── webapp2.0.csproj.nuget.cache │ │ │ ├── webapp2.0.csproj.nuget.g.props │ │ │ └── webapp2.0.csproj.nuget.g.targets │ │ │ ├── published │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ ├── bower.json │ │ │ ├── bundleconfig.json │ │ │ ├── published │ │ │ │ ├── appsettings.Development.json │ │ │ │ ├── appsettings.json │ │ │ │ ├── bower.json │ │ │ │ ├── bundleconfig.json │ │ │ │ ├── published │ │ │ │ │ ├── appsettings.Development.json │ │ │ │ │ ├── appsettings.json │ │ │ │ │ ├── bower.json │ │ │ │ │ ├── bundleconfig.json │ │ │ │ │ ├── web.config │ │ │ │ │ ├── webapp2.0.deps.json │ │ │ │ │ ├── webapp2.0.runtimeconfig.json │ │ │ │ │ └── wwwroot │ │ │ │ │ │ └── lib │ │ │ │ │ │ ├── bootstrap │ │ │ │ │ │ └── .bower.json │ │ │ │ │ │ ├── jquery-validation-unobtrusive │ │ │ │ │ │ └── .bower.json │ │ │ │ │ │ ├── jquery-validation │ │ │ │ │ │ └── .bower.json │ │ │ │ │ │ └── jquery │ │ │ │ │ │ └── .bower.json │ │ │ │ ├── web.config │ │ │ │ ├── webapp2.0.deps.json │ │ │ │ ├── webapp2.0.runtimeconfig.json │ │ │ │ └── wwwroot │ │ │ │ │ └── lib │ │ │ │ │ ├── bootstrap │ │ │ │ │ └── .bower.json │ │ │ │ │ ├── jquery-validation-unobtrusive │ │ │ │ │ └── .bower.json │ │ │ │ │ ├── jquery-validation │ │ │ │ │ └── .bower.json │ │ │ │ │ └── jquery │ │ │ │ │ └── .bower.json │ │ │ ├── web.config │ │ │ ├── webapp2.0.PrecompiledViews.dll │ │ │ ├── webapp2.0.PrecompiledViews.pdb │ │ │ ├── webapp2.0.deps.json │ │ │ ├── webapp2.0.dll │ │ │ ├── webapp2.0.pdb │ │ │ ├── webapp2.0.runtimeconfig.json │ │ │ └── wwwroot │ │ │ │ ├── css │ │ │ │ ├── site.css │ │ │ │ └── site.min.css │ │ │ │ ├── favicon.ico │ │ │ │ ├── images │ │ │ │ ├── banner1.svg │ │ │ │ ├── banner2.svg │ │ │ │ ├── banner3.svg │ │ │ │ └── banner4.svg │ │ │ │ ├── js │ │ │ │ ├── site.js │ │ │ │ └── site.min.js │ │ │ │ └── lib │ │ │ │ ├── bootstrap │ │ │ │ ├── .bower.json │ │ │ │ ├── LICENSE │ │ │ │ └── dist │ │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ ├── bootstrap-theme.min.css.map │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ └── bootstrap.min.css.map │ │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ └── npm.js │ │ │ │ ├── jquery-validation-unobtrusive │ │ │ │ ├── .bower.json │ │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ │ └── jquery.validate.unobtrusive.min.js │ │ │ │ ├── jquery-validation │ │ │ │ ├── .bower.json │ │ │ │ ├── LICENSE.md │ │ │ │ └── dist │ │ │ │ │ ├── additional-methods.js │ │ │ │ │ ├── additional-methods.min.js │ │ │ │ │ ├── jquery.validate.js │ │ │ │ │ └── jquery.validate.min.js │ │ │ │ └── jquery │ │ │ │ ├── .bower.json │ │ │ │ ├── LICENSE.txt │ │ │ │ └── dist │ │ │ │ ├── jquery.js │ │ │ │ ├── jquery.min.js │ │ │ │ └── jquery.min.map │ │ │ ├── webapp2.0.csproj │ │ │ └── wwwroot │ │ │ ├── css │ │ │ ├── site.css │ │ │ └── site.min.css │ │ │ ├── favicon.ico │ │ │ ├── images │ │ │ ├── banner1.svg │ │ │ ├── banner2.svg │ │ │ ├── banner3.svg │ │ │ └── banner4.svg │ │ │ ├── js │ │ │ ├── site.js │ │ │ └── site.min.js │ │ │ └── lib │ │ │ ├── bootstrap │ │ │ ├── .bower.json │ │ │ ├── LICENSE │ │ │ └── dist │ │ │ │ ├── css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap-theme.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── npm.js │ │ │ ├── jquery-validation-unobtrusive │ │ │ ├── .bower.json │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ └── jquery.validate.unobtrusive.min.js │ │ │ ├── jquery-validation │ │ │ ├── .bower.json │ │ │ ├── LICENSE.md │ │ │ └── dist │ │ │ │ ├── additional-methods.js │ │ │ │ ├── additional-methods.min.js │ │ │ │ ├── jquery.validate.js │ │ │ │ └── jquery.validate.min.js │ │ │ └── jquery │ │ │ ├── .bower.json │ │ │ ├── LICENSE.txt │ │ │ └── dist │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ └── jquery.min.map │ ├── readme.md │ └── scenarios │ │ ├── LegacyApp │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── BusinessLayer │ │ │ ├── BusinessLayer.cs │ │ │ ├── BusinessLayer.csproj │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ ├── Database │ │ │ ├── backup │ │ │ │ └── HistoricEvents.bak │ │ │ ├── frenchrevolution.json │ │ │ ├── import-json-files-to-tables.sql │ │ │ ├── renaissance.json │ │ │ ├── ww1.json │ │ │ └── ww2.json │ │ ├── Dockerfiles │ │ │ ├── Commands.txt │ │ │ ├── Dockerfile.Database │ │ │ ├── Dockerfile.Web │ │ │ ├── docker-compose.yml │ │ │ └── readme.md │ │ ├── LegacyApp.sln │ │ └── WebApp │ │ │ ├── App_Start │ │ │ ├── BundleConfig.cs │ │ │ ├── FilterConfig.cs │ │ │ └── RouteConfig.cs │ │ │ ├── ApplicationInsights.config │ │ │ ├── Content │ │ │ ├── Site.css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ │ ├── Controllers │ │ │ └── HomeController.cs │ │ │ ├── FrontEnd(Presentation Layer).csproj │ │ │ ├── Global.asax │ │ │ ├── Global.asax.cs │ │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ │ ├── Scripts │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ ├── jquery-1.10.2.intellisense.js │ │ │ ├── jquery-1.10.2.js │ │ │ ├── jquery-1.10.2.min.js │ │ │ ├── jquery-1.10.2.min.map │ │ │ ├── jquery.validate-vsdoc.js │ │ │ ├── jquery.validate.js │ │ │ ├── jquery.validate.min.js │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ ├── jquery.validate.unobtrusive.min.js │ │ │ ├── modernizr-2.6.2.js │ │ │ ├── respond.js │ │ │ └── respond.min.js │ │ │ ├── Views │ │ │ ├── Home │ │ │ │ ├── FrenchRevolution.cshtml │ │ │ │ ├── Index.cshtml │ │ │ │ ├── Renaissance.cshtml │ │ │ │ ├── WW1.cshtml │ │ │ │ └── WW2.cshtml │ │ │ ├── Shared │ │ │ │ ├── Error.cshtml │ │ │ │ └── _Layout.cshtml │ │ │ ├── Web.config │ │ │ └── _ViewStart.cshtml │ │ │ ├── Web.Debug.config │ │ │ ├── Web.Release.config │ │ │ ├── Web.config │ │ │ ├── favicon.ico │ │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ │ └── packages.config │ │ └── readme.md ├── k8s │ ├── m2 │ │ ├── hooks.yaml │ │ ├── init.yaml │ │ ├── liveness.yaml │ │ ├── myservice.yaml │ │ └── readiness.yaml │ ├── mysql-pvc-dep-svc.yaml │ ├── mysql-secret.yaml │ ├── ng-dep.yaml │ ├── ng-pvc.yaml │ ├── ng-pvc1.yaml │ ├── ng-rc.yaml │ ├── ng-svc.yaml │ ├── nginx-replicaset.yaml │ ├── pv.yaml │ ├── pv1.yaml │ ├── pvc.yaml │ ├── pvc1.yaml │ ├── simple-pod-with-labels.yaml │ ├── simple-pod.yaml │ └── wordpress-pvc-dep-svc.yaml ├── readme.md └── service-fabric │ ├── 01-setup-lab-enviroment │ ├── images │ │ └── readme.md │ └── readme.md │ ├── Top 5 things to consider when working with Service Fabric.md │ └── readme.md ├── grafana-dashboards ├── analysis-by-pod_rev1.json ├── cluster-cost-utilization-metrics_rev5.json ├── k8s-cluster-summary_rev1.json ├── kubernetes-apps_rev1.json ├── kubernetes-cluster-prometheus_rev1.json └── kubernetes-cluster_rev1.json ├── reference-material ├── arm-templates │ ├── ReadMe.md │ ├── ubuntu-1604LTS-docker.json │ ├── win2016-vs2017-docker.json │ └── winsrv2016-docker.json ├── install-k8s-lab-software.sh ├── install-minikube-ubuntu16.04LTS.sh ├── installdocker.ps1 ├── readme.md ├── scripts │ └── linux │ │ ├── install-azure-cli.sh │ │ ├── install-bower.sh │ │ ├── install-docker.sh │ │ ├── install-dotnetcore.sh │ │ ├── install-git.sh │ │ ├── install-nodejs.sh │ │ ├── install-yeoman.sh │ │ └── install.sh └── utility-scripts │ ├── Browse-ContainerByName.ps1 │ ├── Stress-TestCPUCores.ps1 │ ├── calculate-prime-numbers.bat │ └── cpu-stress.bat └── workshop ├── .gitignore ├── Dockerfile.voting-app ├── docker-compose.yaml ├── images ├── grafana-1.png ├── grafana-2.png ├── grafana-3.png ├── k8s-dashboard-1.png ├── kibana-1.png ├── kibana-2.png ├── kibana-3.png ├── kibana-4.png ├── kibana-5.png ├── kibana-6.png ├── kibana-7.png ├── voting-app-1.png ├── voting-app-2.png ├── voting-app-arch-1.png └── voting-app-arch-2.png ├── presentation └── presentation.pdf ├── readme.md ├── voting-app-all-in-one.yaml ├── voting-app-back-dep.yaml ├── voting-app-back-svc.yaml ├── voting-app-front-dep.yaml ├── voting-app-front-svc.yaml ├── voting-app-front-v2-dep.yaml └── voting-app ├── .DS_Store ├── Dockerfile.voting-app ├── config_file.cfg ├── main.py ├── static └── default.css └── templates └── index.html /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/README.md -------------------------------------------------------------------------------- /ckad.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/ckad.md -------------------------------------------------------------------------------- /education/containers/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/.DS_Store -------------------------------------------------------------------------------- /education/containers/demos/Readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /education/containers/demos/healthcheck/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/healthcheck/Dockerfile -------------------------------------------------------------------------------- /education/containers/demos/healthcheck/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/healthcheck/app.js -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/docker-compose.yml -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapi/Controllers/QuotesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapi/Controllers/QuotesController.cs -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapi/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapi/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapi/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapi/Dockerfile -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapi/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapi/Program.cs -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapi/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapi/Startup.cs -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapi/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapi/appsettings.Development.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapi/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapi/appsettings.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapi/bin/Debug/netcoreapp1.1/mywebapi.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapi/bin/Debug/netcoreapp1.1/mywebapi.deps.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapi/bin/Debug/netcoreapp1.1/mywebapi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapi/bin/Debug/netcoreapp1.1/mywebapi.dll -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapi/bin/Debug/netcoreapp1.1/mywebapi.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapi/bin/Debug/netcoreapp1.1/mywebapi.pdb -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapi/bin/Debug/netcoreapp1.1/mywebapi.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapi/bin/Debug/netcoreapp1.1/mywebapi.runtimeconfig.dev.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapi/bin/Debug/netcoreapp1.1/mywebapi.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapi/bin/Debug/netcoreapp1.1/mywebapi.runtimeconfig.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapi/mywebapi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapi/mywebapi.csproj -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapi/obj/Debug/netcoreapp1.1/CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 201b4d4390097464d84df42908652bdb999c66f8 2 | -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapi/obj/Debug/netcoreapp1.1/mywebapi.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapi/obj/Debug/netcoreapp1.1/mywebapi.AssemblyInfo.cs -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapi/obj/Debug/netcoreapp1.1/mywebapi.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapi/obj/Debug/netcoreapp1.1/mywebapi.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapi/obj/Debug/netcoreapp1.1/mywebapi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapi/obj/Debug/netcoreapp1.1/mywebapi.dll -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapi/obj/Debug/netcoreapp1.1/mywebapi.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapi/obj/Debug/netcoreapp1.1/mywebapi.pdb -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapi/obj/mywebapi.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapi/obj/mywebapi.csproj.nuget.g.props -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapi/obj/mywebapi.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapi/obj/mywebapi.csproj.nuget.g.targets -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapi/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapi/obj/project.assets.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/.gitignore -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/Controllers/HomeController.cs -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM microsoft/aspnetcore:1.1 2 | WORKDIR /app 3 | COPY published ./ 4 | ENTRYPOINT ["dotnet", "mywebapp.dll"] -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/Program.cs -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/Startup.cs -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/Views/Home/About.cshtml -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/Views/Home/Quotes.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/Views/Home/Quotes.cshtml -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/appsettings.Development.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/appsettings.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/bower.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/bundleconfig.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/mywebapp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/mywebapp.csproj -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/css/site.css -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/favicon.ico -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/images/banner4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/images/banner4.svg -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore/mywebapp/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/.DS_Store -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/UI-ACR.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/UI-ACR.yaml -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/UI-Public-Docker-Registry.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/UI-Public-Docker-Registry.yaml -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/docker-compose.yml -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/.DS_Store -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/Controllers/BusinessController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/Controllers/BusinessController.cs -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/Dockerfile -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/Program.cs -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/Program.cs]: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/Program.cs] -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/Startup.cs -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/appsettings.Development.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/appsettings.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/bin/Debug/netcoreapp2.0/webapi2.0.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/bin/Debug/netcoreapp2.0/webapi2.0.deps.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/bin/Debug/netcoreapp2.0/webapi2.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/bin/Debug/netcoreapp2.0/webapi2.0.dll -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/bin/Debug/netcoreapp2.0/webapi2.0.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/bin/Debug/netcoreapp2.0/webapi2.0.pdb -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/bin/Debug/netcoreapp2.0/webapi2.0.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/bin/Debug/netcoreapp2.0/webapi2.0.runtimeconfig.dev.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/bin/Debug/netcoreapp2.0/webapi2.0.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/bin/Debug/netcoreapp2.0/webapi2.0.runtimeconfig.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/obj/Debug/netcoreapp2.0/microsoft.aspnetcore.mvc.razor.viewcompilation.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/obj/Debug/netcoreapp2.0/microsoft.aspnetcore.mvc.razor.viewcompilation.rsp -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/obj/Debug/netcoreapp2.0/webapi2.0.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/obj/Debug/netcoreapp2.0/webapi2.0.AssemblyInfo.cs -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/obj/Debug/netcoreapp2.0/webapi2.0.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | eeb0364ec90cc7f02943fdd29861dc2a08fc2a29 2 | -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/obj/Debug/netcoreapp2.0/webapi2.0.PrecompiledViews.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/obj/Debug/netcoreapp2.0/webapi2.0.PrecompiledViews.dll -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/obj/Debug/netcoreapp2.0/webapi2.0.PrecompiledViews.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/obj/Debug/netcoreapp2.0/webapi2.0.PrecompiledViews.pdb -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/obj/Debug/netcoreapp2.0/webapi2.0.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 28311631fed22f00dc440cab1bd2f205a6eb06f4 2 | -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/obj/Debug/netcoreapp2.0/webapi2.0.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/obj/Debug/netcoreapp2.0/webapi2.0.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/obj/Debug/netcoreapp2.0/webapi2.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/obj/Debug/netcoreapp2.0/webapi2.0.dll -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/obj/Debug/netcoreapp2.0/webapi2.0.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/obj/Debug/netcoreapp2.0/webapi2.0.pdb -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/obj/project.assets.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/obj/webapi2.0.csproj.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/obj/webapi2.0.csproj.nuget.cache -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/obj/webapi2.0.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/obj/webapi2.0.csproj.nuget.g.props -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/obj/webapi2.0.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/obj/webapi2.0.csproj.nuget.g.targets -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/appsettings.Development.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/appsettings.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/published/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/published/appsettings.Development.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/published/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/published/appsettings.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/published/published/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/published/published/appsettings.Development.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/published/published/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/published/published/appsettings.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/published/published/published/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/published/published/published/appsettings.Development.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/published/published/published/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/published/published/published/appsettings.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/published/published/published/published/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/published/published/published/published/appsettings.Development.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/published/published/published/published/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/published/published/published/published/appsettings.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/published/published/published/published/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/published/published/published/published/web.config -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/published/published/published/published/webapi2.0.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/published/published/published/published/webapi2.0.deps.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/published/published/published/published/webapi2.0.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/published/published/published/published/webapi2.0.runtimeconfig.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/published/published/published/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/published/published/published/web.config -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/published/published/published/webapi2.0.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/published/published/published/webapi2.0.deps.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/published/published/published/webapi2.0.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/published/published/published/webapi2.0.runtimeconfig.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/published/published/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/published/published/web.config -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/published/published/webapi2.0.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/published/published/webapi2.0.deps.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/published/published/webapi2.0.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/published/published/webapi2.0.runtimeconfig.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/published/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/published/web.config -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/published/webapi2.0.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/published/webapi2.0.deps.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/published/webapi2.0.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/published/webapi2.0.runtimeconfig.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/web.config -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/webapi2.0.PrecompiledViews.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/webapi2.0.PrecompiledViews.dll -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/webapi2.0.PrecompiledViews.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/webapi2.0.PrecompiledViews.pdb -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/webapi2.0.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/webapi2.0.deps.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/webapi2.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/webapi2.0.dll -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/webapi2.0.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/webapi2.0.pdb -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/webapi2.0.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/published/webapi2.0.runtimeconfig.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/webapi2.0.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapi2.0/webapi2.0.csproj -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/.DS_Store -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/Controllers/HomeController.cs -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/Dockerfile -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/Program.cs -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/Startup.cs -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/Views/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/Views/.DS_Store -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/Views/Home/API.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/Views/Home/API.cshtml -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/Views/Home/About.cshtml -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/appsettings.Development.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/appsettings.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/bin/Debug/netcoreapp2.0/webapp2.0.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/bin/Debug/netcoreapp2.0/webapp2.0.deps.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/bin/Debug/netcoreapp2.0/webapp2.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/bin/Debug/netcoreapp2.0/webapp2.0.dll -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/bin/Debug/netcoreapp2.0/webapp2.0.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/bin/Debug/netcoreapp2.0/webapp2.0.pdb -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/bin/Debug/netcoreapp2.0/webapp2.0.runtimeconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/bin/Debug/netcoreapp2.0/webapp2.0.runtimeconfig.dev.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/bin/Debug/netcoreapp2.0/webapp2.0.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/bin/Debug/netcoreapp2.0/webapp2.0.runtimeconfig.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/bower.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/bundleconfig.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/obj/Debug/netcoreapp2.0/microsoft.aspnetcore.mvc.razor.viewcompilation.rsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/obj/Debug/netcoreapp2.0/microsoft.aspnetcore.mvc.razor.viewcompilation.rsp -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/obj/Debug/netcoreapp2.0/webapp2.0.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/obj/Debug/netcoreapp2.0/webapp2.0.AssemblyInfo.cs -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/obj/Debug/netcoreapp2.0/webapp2.0.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 86879a3034b661cedf8636bcfe1813ab11fdbaa9 2 | -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/obj/Debug/netcoreapp2.0/webapp2.0.PrecompiledViews.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/obj/Debug/netcoreapp2.0/webapp2.0.PrecompiledViews.dll -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/obj/Debug/netcoreapp2.0/webapp2.0.PrecompiledViews.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/obj/Debug/netcoreapp2.0/webapp2.0.PrecompiledViews.pdb -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/obj/Debug/netcoreapp2.0/webapp2.0.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | cf718159a8e73b4cc6e42d89dd727c3987a15988 2 | -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/obj/Debug/netcoreapp2.0/webapp2.0.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/obj/Debug/netcoreapp2.0/webapp2.0.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/obj/Debug/netcoreapp2.0/webapp2.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/obj/Debug/netcoreapp2.0/webapp2.0.dll -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/obj/Debug/netcoreapp2.0/webapp2.0.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/obj/Debug/netcoreapp2.0/webapp2.0.pdb -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/obj/project.assets.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/obj/webapp2.0.csproj.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/obj/webapp2.0.csproj.nuget.cache -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/obj/webapp2.0.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/obj/webapp2.0.csproj.nuget.g.props -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/obj/webapp2.0.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/obj/webapp2.0.csproj.nuget.g.targets -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/appsettings.Development.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/appsettings.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/bower.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/bundleconfig.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/published/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/published/appsettings.Development.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/published/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/published/appsettings.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/published/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/published/bower.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/published/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/published/bundleconfig.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/published/published/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/published/published/appsettings.Development.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/published/published/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/published/published/appsettings.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/published/published/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/published/published/bower.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/published/published/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/published/published/bundleconfig.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/published/published/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/published/published/web.config -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/published/published/webapp2.0.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/published/published/webapp2.0.deps.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/published/published/webapp2.0.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/published/published/webapp2.0.runtimeconfig.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/published/published/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/published/published/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/published/published/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/published/published/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/published/published/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/published/published/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/published/published/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/published/published/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/published/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/published/web.config -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/published/webapp2.0.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/published/webapp2.0.deps.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/published/webapp2.0.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/published/webapp2.0.runtimeconfig.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/published/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/published/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/published/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/published/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/published/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/published/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/published/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/published/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/web.config -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/webapp2.0.PrecompiledViews.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/webapp2.0.PrecompiledViews.dll -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/webapp2.0.PrecompiledViews.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/webapp2.0.PrecompiledViews.pdb -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/webapp2.0.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/webapp2.0.deps.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/webapp2.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/webapp2.0.dll -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/webapp2.0.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/webapp2.0.pdb -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/webapp2.0.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/webapp2.0.runtimeconfig.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/css/site.css -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/favicon.ico -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/images/banner4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/images/banner4.svg -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your JavaScript code. 2 | -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/published/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/webapp2.0.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/webapp2.0.csproj -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/css/site.css -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/favicon.ico -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/images/banner4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/images/banner4.svg -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your JavaScript code. 2 | -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/jquery/.bower.json -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/demos/webapp-webapi-aspnetcore2.0/webapp2.0/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /education/containers/readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/.gitattributes -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/.gitignore -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/BusinessLayer/BusinessLayer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/BusinessLayer/BusinessLayer.cs -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/BusinessLayer/BusinessLayer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/BusinessLayer/BusinessLayer.csproj -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/BusinessLayer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/BusinessLayer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/Database/backup/HistoricEvents.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/Database/backup/HistoricEvents.bak -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/Database/frenchrevolution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/Database/frenchrevolution.json -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/Database/import-json-files-to-tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/Database/import-json-files-to-tables.sql -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/Database/renaissance.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/Database/renaissance.json -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/Database/ww1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/Database/ww1.json -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/Database/ww2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/Database/ww2.json -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/Dockerfiles/Commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/Dockerfiles/Commands.txt -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/Dockerfiles/Dockerfile.Database: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/Dockerfiles/Dockerfile.Database -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/Dockerfiles/Dockerfile.Web: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/Dockerfiles/Dockerfile.Web -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/Dockerfiles/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/Dockerfiles/docker-compose.yml -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/Dockerfiles/readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/LegacyApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/LegacyApp.sln -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/WebApp/App_Start/BundleConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/WebApp/App_Start/BundleConfig.cs -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/WebApp/App_Start/FilterConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/WebApp/App_Start/FilterConfig.cs -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/WebApp/App_Start/RouteConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/WebApp/App_Start/RouteConfig.cs -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/WebApp/ApplicationInsights.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/WebApp/ApplicationInsights.config -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/WebApp/Content/Site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/WebApp/Content/Site.css -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/WebApp/Content/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/WebApp/Content/bootstrap.css -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/WebApp/Content/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/WebApp/Content/bootstrap.min.css -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/WebApp/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/WebApp/Controllers/HomeController.cs -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/WebApp/FrontEnd(Presentation Layer).csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/WebApp/FrontEnd(Presentation Layer).csproj -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/WebApp/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/WebApp/Global.asax -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/WebApp/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/WebApp/Global.asax.cs -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/WebApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/WebApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/WebApp/Scripts/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/WebApp/Scripts/bootstrap.js -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/WebApp/Scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/WebApp/Scripts/bootstrap.min.js -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/WebApp/Scripts/jquery-1.10.2.intellisense.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/WebApp/Scripts/jquery-1.10.2.intellisense.js -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/WebApp/Scripts/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/WebApp/Scripts/jquery-1.10.2.js -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/WebApp/Scripts/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/WebApp/Scripts/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/WebApp/Scripts/jquery-1.10.2.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/WebApp/Scripts/jquery-1.10.2.min.map -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/WebApp/Scripts/jquery.validate-vsdoc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/WebApp/Scripts/jquery.validate-vsdoc.js -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/WebApp/Scripts/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/WebApp/Scripts/jquery.validate.js -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/WebApp/Scripts/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/WebApp/Scripts/jquery.validate.min.js -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/WebApp/Scripts/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/WebApp/Scripts/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/WebApp/Scripts/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/WebApp/Scripts/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/WebApp/Scripts/modernizr-2.6.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/WebApp/Scripts/modernizr-2.6.2.js -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/WebApp/Scripts/respond.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/WebApp/Scripts/respond.js -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/WebApp/Scripts/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/WebApp/Scripts/respond.min.js -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/WebApp/Views/Home/FrenchRevolution.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/WebApp/Views/Home/FrenchRevolution.cshtml -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/WebApp/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/WebApp/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/WebApp/Views/Home/Renaissance.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/WebApp/Views/Home/Renaissance.cshtml -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/WebApp/Views/Home/WW1.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/WebApp/Views/Home/WW1.cshtml -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/WebApp/Views/Home/WW2.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/WebApp/Views/Home/WW2.cshtml -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/WebApp/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/WebApp/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/WebApp/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/WebApp/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/WebApp/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/WebApp/Views/Web.config -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/WebApp/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/WebApp/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/WebApp/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/WebApp/Web.Debug.config -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/WebApp/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/WebApp/Web.Release.config -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/WebApp/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/WebApp/Web.config -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/WebApp/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/WebApp/favicon.ico -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/WebApp/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/WebApp/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/WebApp/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/WebApp/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/WebApp/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/WebApp/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/WebApp/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/WebApp/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /education/containers/scenarios/LegacyApp/WebApp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/containers/scenarios/LegacyApp/WebApp/packages.config -------------------------------------------------------------------------------- /education/containers/scenarios/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /education/k8s/m2/hooks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/k8s/m2/hooks.yaml -------------------------------------------------------------------------------- /education/k8s/m2/init.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/k8s/m2/init.yaml -------------------------------------------------------------------------------- /education/k8s/m2/liveness.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/k8s/m2/liveness.yaml -------------------------------------------------------------------------------- /education/k8s/m2/myservice.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/k8s/m2/myservice.yaml -------------------------------------------------------------------------------- /education/k8s/m2/readiness.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/k8s/m2/readiness.yaml -------------------------------------------------------------------------------- /education/k8s/mysql-pvc-dep-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/k8s/mysql-pvc-dep-svc.yaml -------------------------------------------------------------------------------- /education/k8s/mysql-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/k8s/mysql-secret.yaml -------------------------------------------------------------------------------- /education/k8s/ng-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/k8s/ng-dep.yaml -------------------------------------------------------------------------------- /education/k8s/ng-pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/k8s/ng-pvc.yaml -------------------------------------------------------------------------------- /education/k8s/ng-pvc1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/k8s/ng-pvc1.yaml -------------------------------------------------------------------------------- /education/k8s/ng-rc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/k8s/ng-rc.yaml -------------------------------------------------------------------------------- /education/k8s/ng-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/k8s/ng-svc.yaml -------------------------------------------------------------------------------- /education/k8s/nginx-replicaset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/k8s/nginx-replicaset.yaml -------------------------------------------------------------------------------- /education/k8s/pv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/k8s/pv.yaml -------------------------------------------------------------------------------- /education/k8s/pv1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/k8s/pv1.yaml -------------------------------------------------------------------------------- /education/k8s/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/k8s/pvc.yaml -------------------------------------------------------------------------------- /education/k8s/pvc1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/k8s/pvc1.yaml -------------------------------------------------------------------------------- /education/k8s/simple-pod-with-labels.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/k8s/simple-pod-with-labels.yaml -------------------------------------------------------------------------------- /education/k8s/simple-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/k8s/simple-pod.yaml -------------------------------------------------------------------------------- /education/k8s/wordpress-pvc-dep-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/k8s/wordpress-pvc-dep-svc.yaml -------------------------------------------------------------------------------- /education/readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /education/service-fabric/01-setup-lab-enviroment/images/readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /education/service-fabric/01-setup-lab-enviroment/readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /education/service-fabric/Top 5 things to consider when working with Service Fabric.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/education/service-fabric/Top 5 things to consider when working with Service Fabric.md -------------------------------------------------------------------------------- /education/service-fabric/readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /grafana-dashboards/analysis-by-pod_rev1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/grafana-dashboards/analysis-by-pod_rev1.json -------------------------------------------------------------------------------- /grafana-dashboards/cluster-cost-utilization-metrics_rev5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/grafana-dashboards/cluster-cost-utilization-metrics_rev5.json -------------------------------------------------------------------------------- /grafana-dashboards/k8s-cluster-summary_rev1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/grafana-dashboards/k8s-cluster-summary_rev1.json -------------------------------------------------------------------------------- /grafana-dashboards/kubernetes-apps_rev1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/grafana-dashboards/kubernetes-apps_rev1.json -------------------------------------------------------------------------------- /grafana-dashboards/kubernetes-cluster-prometheus_rev1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/grafana-dashboards/kubernetes-cluster-prometheus_rev1.json -------------------------------------------------------------------------------- /grafana-dashboards/kubernetes-cluster_rev1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/grafana-dashboards/kubernetes-cluster_rev1.json -------------------------------------------------------------------------------- /reference-material/arm-templates/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/reference-material/arm-templates/ReadMe.md -------------------------------------------------------------------------------- /reference-material/arm-templates/ubuntu-1604LTS-docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/reference-material/arm-templates/ubuntu-1604LTS-docker.json -------------------------------------------------------------------------------- /reference-material/arm-templates/win2016-vs2017-docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/reference-material/arm-templates/win2016-vs2017-docker.json -------------------------------------------------------------------------------- /reference-material/arm-templates/winsrv2016-docker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/reference-material/arm-templates/winsrv2016-docker.json -------------------------------------------------------------------------------- /reference-material/install-k8s-lab-software.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/reference-material/install-k8s-lab-software.sh -------------------------------------------------------------------------------- /reference-material/install-minikube-ubuntu16.04LTS.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/reference-material/install-minikube-ubuntu16.04LTS.sh -------------------------------------------------------------------------------- /reference-material/installdocker.ps1: -------------------------------------------------------------------------------- 1 | powershell -ExecutionPolicy Unrestricted ; 2 | -------------------------------------------------------------------------------- /reference-material/readme.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /reference-material/scripts/linux/install-azure-cli.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/reference-material/scripts/linux/install-azure-cli.sh -------------------------------------------------------------------------------- /reference-material/scripts/linux/install-bower.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/reference-material/scripts/linux/install-bower.sh -------------------------------------------------------------------------------- /reference-material/scripts/linux/install-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/reference-material/scripts/linux/install-docker.sh -------------------------------------------------------------------------------- /reference-material/scripts/linux/install-dotnetcore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/reference-material/scripts/linux/install-dotnetcore.sh -------------------------------------------------------------------------------- /reference-material/scripts/linux/install-git.sh: -------------------------------------------------------------------------------- 1 | sudo apt install git -y 2 | -------------------------------------------------------------------------------- /reference-material/scripts/linux/install-nodejs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/reference-material/scripts/linux/install-nodejs.sh -------------------------------------------------------------------------------- /reference-material/scripts/linux/install-yeoman.sh: -------------------------------------------------------------------------------- 1 | 2 | sudo npm install -g yo 3 | -------------------------------------------------------------------------------- /reference-material/scripts/linux/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/reference-material/scripts/linux/install.sh -------------------------------------------------------------------------------- /reference-material/utility-scripts/Browse-ContainerByName.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/reference-material/utility-scripts/Browse-ContainerByName.ps1 -------------------------------------------------------------------------------- /reference-material/utility-scripts/Stress-TestCPUCores.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/reference-material/utility-scripts/Stress-TestCPUCores.ps1 -------------------------------------------------------------------------------- /reference-material/utility-scripts/calculate-prime-numbers.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/reference-material/utility-scripts/calculate-prime-numbers.bat -------------------------------------------------------------------------------- /reference-material/utility-scripts/cpu-stress.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/reference-material/utility-scripts/cpu-stress.bat -------------------------------------------------------------------------------- /workshop/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /workshop/Dockerfile.voting-app: -------------------------------------------------------------------------------- 1 | FROM tiangolo/uwsgi-nginx-flask:python3.6 2 | RUN pip install redis 3 | ADD /voting-app /app 4 | -------------------------------------------------------------------------------- /workshop/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/workshop/docker-compose.yaml -------------------------------------------------------------------------------- /workshop/images/grafana-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/workshop/images/grafana-1.png -------------------------------------------------------------------------------- /workshop/images/grafana-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/workshop/images/grafana-2.png -------------------------------------------------------------------------------- /workshop/images/grafana-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/workshop/images/grafana-3.png -------------------------------------------------------------------------------- /workshop/images/k8s-dashboard-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/workshop/images/k8s-dashboard-1.png -------------------------------------------------------------------------------- /workshop/images/kibana-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/workshop/images/kibana-1.png -------------------------------------------------------------------------------- /workshop/images/kibana-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/workshop/images/kibana-2.png -------------------------------------------------------------------------------- /workshop/images/kibana-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/workshop/images/kibana-3.png -------------------------------------------------------------------------------- /workshop/images/kibana-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/workshop/images/kibana-4.png -------------------------------------------------------------------------------- /workshop/images/kibana-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/workshop/images/kibana-5.png -------------------------------------------------------------------------------- /workshop/images/kibana-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/workshop/images/kibana-6.png -------------------------------------------------------------------------------- /workshop/images/kibana-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/workshop/images/kibana-7.png -------------------------------------------------------------------------------- /workshop/images/voting-app-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/workshop/images/voting-app-1.png -------------------------------------------------------------------------------- /workshop/images/voting-app-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/workshop/images/voting-app-2.png -------------------------------------------------------------------------------- /workshop/images/voting-app-arch-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/workshop/images/voting-app-arch-1.png -------------------------------------------------------------------------------- /workshop/images/voting-app-arch-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/workshop/images/voting-app-arch-2.png -------------------------------------------------------------------------------- /workshop/presentation/presentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/workshop/presentation/presentation.pdf -------------------------------------------------------------------------------- /workshop/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/workshop/readme.md -------------------------------------------------------------------------------- /workshop/voting-app-all-in-one.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/workshop/voting-app-all-in-one.yaml -------------------------------------------------------------------------------- /workshop/voting-app-back-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/workshop/voting-app-back-dep.yaml -------------------------------------------------------------------------------- /workshop/voting-app-back-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/workshop/voting-app-back-svc.yaml -------------------------------------------------------------------------------- /workshop/voting-app-front-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/workshop/voting-app-front-dep.yaml -------------------------------------------------------------------------------- /workshop/voting-app-front-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/workshop/voting-app-front-svc.yaml -------------------------------------------------------------------------------- /workshop/voting-app-front-v2-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/workshop/voting-app-front-v2-dep.yaml -------------------------------------------------------------------------------- /workshop/voting-app/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/workshop/voting-app/.DS_Store -------------------------------------------------------------------------------- /workshop/voting-app/Dockerfile.voting-app: -------------------------------------------------------------------------------- 1 | FROM tiangolo/uwsgi-nginx-flask:python3.6 2 | RUN pip install redis 3 | ADD /voting-app /app -------------------------------------------------------------------------------- /workshop/voting-app/config_file.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/workshop/voting-app/config_file.cfg -------------------------------------------------------------------------------- /workshop/voting-app/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/workshop/voting-app/main.py -------------------------------------------------------------------------------- /workshop/voting-app/static/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/workshop/voting-app/static/default.css -------------------------------------------------------------------------------- /workshop/voting-app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razi-rais/microservices/HEAD/workshop/voting-app/templates/index.html --------------------------------------------------------------------------------