├── .DS_Store ├── .dockerignore ├── .gitignore ├── IdentityService ├── .vscode │ ├── launch.json │ └── tasks.json ├── Api │ └── TestController.cs ├── Config.cs ├── DemoCorsPolicy.cs ├── DemoRedirectValidator.cs ├── IdentityServer4Demo.csproj ├── Program.cs ├── Properties │ └── launchSettings.json ├── Quickstart │ ├── Account │ │ ├── AccountController.cs │ │ ├── AccountOptions.cs │ │ ├── ExternalController.cs │ │ ├── ExternalProvider.cs │ │ ├── LoggedOutViewModel.cs │ │ ├── LoginInputModel.cs │ │ ├── LoginViewModel.cs │ │ ├── LogoutInputModel.cs │ │ ├── LogoutViewModel.cs │ │ └── RedirectViewModel.cs │ ├── Consent │ │ ├── ConsentController.cs │ │ ├── ConsentInputModel.cs │ │ ├── ConsentOptions.cs │ │ ├── ConsentViewModel.cs │ │ ├── ProcessConsentResult.cs │ │ └── ScopeViewModel.cs │ ├── Device │ │ ├── DeviceAuthorizationInputModel.cs │ │ ├── DeviceAuthorizationViewModel.cs │ │ └── DeviceController.cs │ ├── Diagnostics │ │ ├── DiagnosticsController.cs │ │ └── DiagnosticsViewModel.cs │ ├── Extensions.cs │ ├── Grants │ │ ├── GrantsController.cs │ │ └── GrantsViewModel.cs │ ├── Home │ │ ├── ErrorViewModel.cs │ │ └── HomeController.cs │ ├── SecurityHeadersAttribute.cs │ └── TestUsers.cs ├── SerilogMiddleware.cs ├── Startup.cs ├── Views │ ├── Account │ │ ├── LoggedOut.cshtml │ │ ├── Login.cshtml │ │ └── Logout.cshtml │ ├── Consent │ │ ├── Index.cshtml │ │ └── _ScopeListItem.cshtml │ ├── Device │ │ ├── Success.cshtml │ │ ├── UserCodeCapture.cshtml │ │ └── UserCodeConfirmation.cshtml │ ├── Diagnostics │ │ └── Index.cshtml │ ├── Grants │ │ └── Index.cshtml │ ├── Home │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── Redirect.cshtml │ │ ├── _Layout.cshtml │ │ ├── _ScopeListItem.cshtml │ │ └── _ValidationSummary.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── appsettings.json ├── updateUI.ps1 ├── web.config └── wwwroot │ ├── css │ ├── site.css │ ├── site.less │ └── site.min.css │ ├── favicon.ico │ ├── icon.jpg │ ├── icon.png │ ├── js │ ├── signin-redirect.js │ └── signout-redirect.js │ └── lib │ ├── bootstrap │ ├── css │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ └── bootstrap.min.css │ ├── 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 │ └── jquery │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map ├── LICENSE ├── OrdersService ├── .dockerignore ├── .vscode │ ├── launch.json │ └── tasks.json ├── AppSettings.cs ├── Authentication │ └── QueryStringAuthenticationMiddleware.cs ├── Controllers │ ├── HealthController.cs │ ├── OrderServiceException.cs │ └── OrdersController.cs ├── DTOs │ ├── Order.cs │ └── OrderItem.cs ├── Discovery │ ├── ConsulConfig.cs │ └── ConsulHostedService.cs ├── Dockerfile ├── Hubs │ └── OrdersHub.cs ├── Messages │ ├── NewOrderMessage.cs │ ├── Order.cs │ ├── OrderItem.cs │ └── ShippingCreatedMessage.cs ├── OrdersService.csproj ├── Program.cs ├── Properties │ └── launchSettings.json ├── Startup.cs ├── appsettings.Development.json ├── appsettings.json ├── docker-compose.override.yml └── docker-compose.yml ├── README.md ├── ShippingService ├── .deployment ├── DOCKERFILE ├── app │ ├── app.ts │ ├── config │ │ ├── config.ts │ │ └── settings.ts │ ├── controllers │ │ └── statusController.ts │ └── messages │ │ ├── newOrderMessage.ts │ │ ├── order.ts │ │ └── shippingCreatedMessage.ts ├── deploy.sh ├── package-lock.json ├── package.json ├── server.js └── tsconfig.json └── ShoppingClient ├── .editorconfig ├── LICENSE ├── README.md ├── angular.json ├── buildAssets ├── desktop │ ├── appMenu.js │ ├── icon.png │ ├── index.js │ └── package.json ├── mobile │ └── config.xml └── resources │ ├── icon.icns │ ├── icon.ico │ ├── icon.png │ └── splash.png ├── package-lock.json ├── package.json ├── src ├── assets │ ├── .gitkeep │ └── logo.svg ├── cordova.js ├── environments │ ├── environment.hmr.ts │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── hmr.ts ├── index.html ├── main.ts ├── modules │ └── app │ │ ├── components │ │ ├── header │ │ │ ├── header.html │ │ │ ├── header.scss │ │ │ └── header.ts │ │ ├── home │ │ │ ├── home.html │ │ │ ├── home.scss │ │ │ └── home.ts │ │ ├── list │ │ │ ├── orderList.html │ │ │ └── orderList.ts │ │ ├── login │ │ │ ├── login.html │ │ │ ├── login.scss │ │ │ └── login.ts │ │ ├── menu │ │ │ ├── menu.html │ │ │ ├── menu.scss │ │ │ └── menu.ts │ │ └── root │ │ │ ├── root.html │ │ │ ├── root.scss │ │ │ └── root.ts │ │ ├── guards │ │ └── isAuthenticated.ts │ │ ├── module.ts │ │ ├── routes.ts │ │ └── services │ │ ├── authInterceptor.ts │ │ ├── desktopIntegrationService.ts │ │ ├── ordersService.ts │ │ ├── platformService.ts │ │ ├── pushService.ts │ │ └── windowRef.ts ├── polyfills.ts ├── styles │ ├── _backdrop.scss │ ├── _links.scss │ ├── _loader.scss │ ├── _menu.scss │ ├── _table.scss │ ├── _utilities.scss │ ├── _variables.scss │ └── global.scss └── tsconfig.app.json ├── tsconfig.json └── tslint.json /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/.DS_Store -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/.gitignore -------------------------------------------------------------------------------- /IdentityService/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/.vscode/launch.json -------------------------------------------------------------------------------- /IdentityService/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/.vscode/tasks.json -------------------------------------------------------------------------------- /IdentityService/Api/TestController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/Api/TestController.cs -------------------------------------------------------------------------------- /IdentityService/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/Config.cs -------------------------------------------------------------------------------- /IdentityService/DemoCorsPolicy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/DemoCorsPolicy.cs -------------------------------------------------------------------------------- /IdentityService/DemoRedirectValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/DemoRedirectValidator.cs -------------------------------------------------------------------------------- /IdentityService/IdentityServer4Demo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/IdentityServer4Demo.csproj -------------------------------------------------------------------------------- /IdentityService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/Program.cs -------------------------------------------------------------------------------- /IdentityService/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/Properties/launchSettings.json -------------------------------------------------------------------------------- /IdentityService/Quickstart/Account/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/Quickstart/Account/AccountController.cs -------------------------------------------------------------------------------- /IdentityService/Quickstart/Account/AccountOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/Quickstart/Account/AccountOptions.cs -------------------------------------------------------------------------------- /IdentityService/Quickstart/Account/ExternalController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/Quickstart/Account/ExternalController.cs -------------------------------------------------------------------------------- /IdentityService/Quickstart/Account/ExternalProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/Quickstart/Account/ExternalProvider.cs -------------------------------------------------------------------------------- /IdentityService/Quickstart/Account/LoggedOutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/Quickstart/Account/LoggedOutViewModel.cs -------------------------------------------------------------------------------- /IdentityService/Quickstart/Account/LoginInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/Quickstart/Account/LoginInputModel.cs -------------------------------------------------------------------------------- /IdentityService/Quickstart/Account/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/Quickstart/Account/LoginViewModel.cs -------------------------------------------------------------------------------- /IdentityService/Quickstart/Account/LogoutInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/Quickstart/Account/LogoutInputModel.cs -------------------------------------------------------------------------------- /IdentityService/Quickstart/Account/LogoutViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/Quickstart/Account/LogoutViewModel.cs -------------------------------------------------------------------------------- /IdentityService/Quickstart/Account/RedirectViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/Quickstart/Account/RedirectViewModel.cs -------------------------------------------------------------------------------- /IdentityService/Quickstart/Consent/ConsentController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/Quickstart/Consent/ConsentController.cs -------------------------------------------------------------------------------- /IdentityService/Quickstart/Consent/ConsentInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/Quickstart/Consent/ConsentInputModel.cs -------------------------------------------------------------------------------- /IdentityService/Quickstart/Consent/ConsentOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/Quickstart/Consent/ConsentOptions.cs -------------------------------------------------------------------------------- /IdentityService/Quickstart/Consent/ConsentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/Quickstart/Consent/ConsentViewModel.cs -------------------------------------------------------------------------------- /IdentityService/Quickstart/Consent/ProcessConsentResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/Quickstart/Consent/ProcessConsentResult.cs -------------------------------------------------------------------------------- /IdentityService/Quickstart/Consent/ScopeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/Quickstart/Consent/ScopeViewModel.cs -------------------------------------------------------------------------------- /IdentityService/Quickstart/Device/DeviceAuthorizationInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/Quickstart/Device/DeviceAuthorizationInputModel.cs -------------------------------------------------------------------------------- /IdentityService/Quickstart/Device/DeviceAuthorizationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/Quickstart/Device/DeviceAuthorizationViewModel.cs -------------------------------------------------------------------------------- /IdentityService/Quickstart/Device/DeviceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/Quickstart/Device/DeviceController.cs -------------------------------------------------------------------------------- /IdentityService/Quickstart/Diagnostics/DiagnosticsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/Quickstart/Diagnostics/DiagnosticsController.cs -------------------------------------------------------------------------------- /IdentityService/Quickstart/Diagnostics/DiagnosticsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/Quickstart/Diagnostics/DiagnosticsViewModel.cs -------------------------------------------------------------------------------- /IdentityService/Quickstart/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/Quickstart/Extensions.cs -------------------------------------------------------------------------------- /IdentityService/Quickstart/Grants/GrantsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/Quickstart/Grants/GrantsController.cs -------------------------------------------------------------------------------- /IdentityService/Quickstart/Grants/GrantsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/Quickstart/Grants/GrantsViewModel.cs -------------------------------------------------------------------------------- /IdentityService/Quickstart/Home/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/Quickstart/Home/ErrorViewModel.cs -------------------------------------------------------------------------------- /IdentityService/Quickstart/Home/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/Quickstart/Home/HomeController.cs -------------------------------------------------------------------------------- /IdentityService/Quickstart/SecurityHeadersAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/Quickstart/SecurityHeadersAttribute.cs -------------------------------------------------------------------------------- /IdentityService/Quickstart/TestUsers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/Quickstart/TestUsers.cs -------------------------------------------------------------------------------- /IdentityService/SerilogMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/SerilogMiddleware.cs -------------------------------------------------------------------------------- /IdentityService/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/Startup.cs -------------------------------------------------------------------------------- /IdentityService/Views/Account/LoggedOut.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/Views/Account/LoggedOut.cshtml -------------------------------------------------------------------------------- /IdentityService/Views/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/Views/Account/Login.cshtml -------------------------------------------------------------------------------- /IdentityService/Views/Account/Logout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/Views/Account/Logout.cshtml -------------------------------------------------------------------------------- /IdentityService/Views/Consent/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/Views/Consent/Index.cshtml -------------------------------------------------------------------------------- /IdentityService/Views/Consent/_ScopeListItem.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/Views/Consent/_ScopeListItem.cshtml -------------------------------------------------------------------------------- /IdentityService/Views/Device/Success.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/Views/Device/Success.cshtml -------------------------------------------------------------------------------- /IdentityService/Views/Device/UserCodeCapture.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/Views/Device/UserCodeCapture.cshtml -------------------------------------------------------------------------------- /IdentityService/Views/Device/UserCodeConfirmation.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/Views/Device/UserCodeConfirmation.cshtml -------------------------------------------------------------------------------- /IdentityService/Views/Diagnostics/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/Views/Diagnostics/Index.cshtml -------------------------------------------------------------------------------- /IdentityService/Views/Grants/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/Views/Grants/Index.cshtml -------------------------------------------------------------------------------- /IdentityService/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /IdentityService/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /IdentityService/Views/Shared/Redirect.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/Views/Shared/Redirect.cshtml -------------------------------------------------------------------------------- /IdentityService/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /IdentityService/Views/Shared/_ScopeListItem.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/Views/Shared/_ScopeListItem.cshtml -------------------------------------------------------------------------------- /IdentityService/Views/Shared/_ValidationSummary.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/Views/Shared/_ValidationSummary.cshtml -------------------------------------------------------------------------------- /IdentityService/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /IdentityService/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /IdentityService/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/appsettings.json -------------------------------------------------------------------------------- /IdentityService/updateUI.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/updateUI.ps1 -------------------------------------------------------------------------------- /IdentityService/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/web.config -------------------------------------------------------------------------------- /IdentityService/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/wwwroot/css/site.css -------------------------------------------------------------------------------- /IdentityService/wwwroot/css/site.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/wwwroot/css/site.less -------------------------------------------------------------------------------- /IdentityService/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /IdentityService/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/wwwroot/favicon.ico -------------------------------------------------------------------------------- /IdentityService/wwwroot/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/wwwroot/icon.jpg -------------------------------------------------------------------------------- /IdentityService/wwwroot/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/wwwroot/icon.png -------------------------------------------------------------------------------- /IdentityService/wwwroot/js/signin-redirect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/wwwroot/js/signin-redirect.js -------------------------------------------------------------------------------- /IdentityService/wwwroot/js/signout-redirect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/wwwroot/js/signout-redirect.js -------------------------------------------------------------------------------- /IdentityService/wwwroot/lib/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/wwwroot/lib/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /IdentityService/wwwroot/lib/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/wwwroot/lib/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /IdentityService/wwwroot/lib/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/wwwroot/lib/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /IdentityService/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /IdentityService/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /IdentityService/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /IdentityService/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /IdentityService/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /IdentityService/wwwroot/lib/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/wwwroot/lib/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /IdentityService/wwwroot/lib/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/wwwroot/lib/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /IdentityService/wwwroot/lib/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/wwwroot/lib/jquery/jquery.js -------------------------------------------------------------------------------- /IdentityService/wwwroot/lib/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/wwwroot/lib/jquery/jquery.min.js -------------------------------------------------------------------------------- /IdentityService/wwwroot/lib/jquery/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/IdentityService/wwwroot/lib/jquery/jquery.min.map -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/LICENSE -------------------------------------------------------------------------------- /OrdersService/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/OrdersService/.dockerignore -------------------------------------------------------------------------------- /OrdersService/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/OrdersService/.vscode/launch.json -------------------------------------------------------------------------------- /OrdersService/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/OrdersService/.vscode/tasks.json -------------------------------------------------------------------------------- /OrdersService/AppSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/OrdersService/AppSettings.cs -------------------------------------------------------------------------------- /OrdersService/Authentication/QueryStringAuthenticationMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/OrdersService/Authentication/QueryStringAuthenticationMiddleware.cs -------------------------------------------------------------------------------- /OrdersService/Controllers/HealthController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/OrdersService/Controllers/HealthController.cs -------------------------------------------------------------------------------- /OrdersService/Controllers/OrderServiceException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/OrdersService/Controllers/OrderServiceException.cs -------------------------------------------------------------------------------- /OrdersService/Controllers/OrdersController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/OrdersService/Controllers/OrdersController.cs -------------------------------------------------------------------------------- /OrdersService/DTOs/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/OrdersService/DTOs/Order.cs -------------------------------------------------------------------------------- /OrdersService/DTOs/OrderItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/OrdersService/DTOs/OrderItem.cs -------------------------------------------------------------------------------- /OrdersService/Discovery/ConsulConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/OrdersService/Discovery/ConsulConfig.cs -------------------------------------------------------------------------------- /OrdersService/Discovery/ConsulHostedService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/OrdersService/Discovery/ConsulHostedService.cs -------------------------------------------------------------------------------- /OrdersService/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/OrdersService/Dockerfile -------------------------------------------------------------------------------- /OrdersService/Hubs/OrdersHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/OrdersService/Hubs/OrdersHub.cs -------------------------------------------------------------------------------- /OrdersService/Messages/NewOrderMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/OrdersService/Messages/NewOrderMessage.cs -------------------------------------------------------------------------------- /OrdersService/Messages/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/OrdersService/Messages/Order.cs -------------------------------------------------------------------------------- /OrdersService/Messages/OrderItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/OrdersService/Messages/OrderItem.cs -------------------------------------------------------------------------------- /OrdersService/Messages/ShippingCreatedMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/OrdersService/Messages/ShippingCreatedMessage.cs -------------------------------------------------------------------------------- /OrdersService/OrdersService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/OrdersService/OrdersService.csproj -------------------------------------------------------------------------------- /OrdersService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/OrdersService/Program.cs -------------------------------------------------------------------------------- /OrdersService/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/OrdersService/Properties/launchSettings.json -------------------------------------------------------------------------------- /OrdersService/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/OrdersService/Startup.cs -------------------------------------------------------------------------------- /OrdersService/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/OrdersService/appsettings.Development.json -------------------------------------------------------------------------------- /OrdersService/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/OrdersService/appsettings.json -------------------------------------------------------------------------------- /OrdersService/docker-compose.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/OrdersService/docker-compose.override.yml -------------------------------------------------------------------------------- /OrdersService/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/OrdersService/docker-compose.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/README.md -------------------------------------------------------------------------------- /ShippingService/.deployment: -------------------------------------------------------------------------------- 1 | [config] 2 | command = bash deploy.sh -------------------------------------------------------------------------------- /ShippingService/DOCKERFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShippingService/DOCKERFILE -------------------------------------------------------------------------------- /ShippingService/app/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShippingService/app/app.ts -------------------------------------------------------------------------------- /ShippingService/app/config/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShippingService/app/config/config.ts -------------------------------------------------------------------------------- /ShippingService/app/config/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShippingService/app/config/settings.ts -------------------------------------------------------------------------------- /ShippingService/app/controllers/statusController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShippingService/app/controllers/statusController.ts -------------------------------------------------------------------------------- /ShippingService/app/messages/newOrderMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShippingService/app/messages/newOrderMessage.ts -------------------------------------------------------------------------------- /ShippingService/app/messages/order.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShippingService/app/messages/order.ts -------------------------------------------------------------------------------- /ShippingService/app/messages/shippingCreatedMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShippingService/app/messages/shippingCreatedMessage.ts -------------------------------------------------------------------------------- /ShippingService/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShippingService/deploy.sh -------------------------------------------------------------------------------- /ShippingService/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShippingService/package-lock.json -------------------------------------------------------------------------------- /ShippingService/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShippingService/package.json -------------------------------------------------------------------------------- /ShippingService/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShippingService/server.js -------------------------------------------------------------------------------- /ShippingService/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShippingService/tsconfig.json -------------------------------------------------------------------------------- /ShoppingClient/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/.editorconfig -------------------------------------------------------------------------------- /ShoppingClient/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/LICENSE -------------------------------------------------------------------------------- /ShoppingClient/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/README.md -------------------------------------------------------------------------------- /ShoppingClient/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/angular.json -------------------------------------------------------------------------------- /ShoppingClient/buildAssets/desktop/appMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/buildAssets/desktop/appMenu.js -------------------------------------------------------------------------------- /ShoppingClient/buildAssets/desktop/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/buildAssets/desktop/icon.png -------------------------------------------------------------------------------- /ShoppingClient/buildAssets/desktop/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/buildAssets/desktop/index.js -------------------------------------------------------------------------------- /ShoppingClient/buildAssets/desktop/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/buildAssets/desktop/package.json -------------------------------------------------------------------------------- /ShoppingClient/buildAssets/mobile/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/buildAssets/mobile/config.xml -------------------------------------------------------------------------------- /ShoppingClient/buildAssets/resources/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/buildAssets/resources/icon.icns -------------------------------------------------------------------------------- /ShoppingClient/buildAssets/resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/buildAssets/resources/icon.ico -------------------------------------------------------------------------------- /ShoppingClient/buildAssets/resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/buildAssets/resources/icon.png -------------------------------------------------------------------------------- /ShoppingClient/buildAssets/resources/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/buildAssets/resources/splash.png -------------------------------------------------------------------------------- /ShoppingClient/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/package-lock.json -------------------------------------------------------------------------------- /ShoppingClient/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/package.json -------------------------------------------------------------------------------- /ShoppingClient/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ShoppingClient/src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/src/assets/logo.svg -------------------------------------------------------------------------------- /ShoppingClient/src/cordova.js: -------------------------------------------------------------------------------- 1 | /* This file is intentionally here as a placeholder */ -------------------------------------------------------------------------------- /ShoppingClient/src/environments/environment.hmr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/src/environments/environment.hmr.ts -------------------------------------------------------------------------------- /ShoppingClient/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /ShoppingClient/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/src/environments/environment.ts -------------------------------------------------------------------------------- /ShoppingClient/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/src/favicon.ico -------------------------------------------------------------------------------- /ShoppingClient/src/hmr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/src/hmr.ts -------------------------------------------------------------------------------- /ShoppingClient/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/src/index.html -------------------------------------------------------------------------------- /ShoppingClient/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/src/main.ts -------------------------------------------------------------------------------- /ShoppingClient/src/modules/app/components/header/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/src/modules/app/components/header/header.html -------------------------------------------------------------------------------- /ShoppingClient/src/modules/app/components/header/header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/src/modules/app/components/header/header.scss -------------------------------------------------------------------------------- /ShoppingClient/src/modules/app/components/header/header.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/src/modules/app/components/header/header.ts -------------------------------------------------------------------------------- /ShoppingClient/src/modules/app/components/home/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/src/modules/app/components/home/home.html -------------------------------------------------------------------------------- /ShoppingClient/src/modules/app/components/home/home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/src/modules/app/components/home/home.scss -------------------------------------------------------------------------------- /ShoppingClient/src/modules/app/components/home/home.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/src/modules/app/components/home/home.ts -------------------------------------------------------------------------------- /ShoppingClient/src/modules/app/components/list/orderList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/src/modules/app/components/list/orderList.html -------------------------------------------------------------------------------- /ShoppingClient/src/modules/app/components/list/orderList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/src/modules/app/components/list/orderList.ts -------------------------------------------------------------------------------- /ShoppingClient/src/modules/app/components/login/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/src/modules/app/components/login/login.html -------------------------------------------------------------------------------- /ShoppingClient/src/modules/app/components/login/login.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/src/modules/app/components/login/login.scss -------------------------------------------------------------------------------- /ShoppingClient/src/modules/app/components/login/login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/src/modules/app/components/login/login.ts -------------------------------------------------------------------------------- /ShoppingClient/src/modules/app/components/menu/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/src/modules/app/components/menu/menu.html -------------------------------------------------------------------------------- /ShoppingClient/src/modules/app/components/menu/menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/src/modules/app/components/menu/menu.scss -------------------------------------------------------------------------------- /ShoppingClient/src/modules/app/components/menu/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/src/modules/app/components/menu/menu.ts -------------------------------------------------------------------------------- /ShoppingClient/src/modules/app/components/root/root.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/src/modules/app/components/root/root.html -------------------------------------------------------------------------------- /ShoppingClient/src/modules/app/components/root/root.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/src/modules/app/components/root/root.scss -------------------------------------------------------------------------------- /ShoppingClient/src/modules/app/components/root/root.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/src/modules/app/components/root/root.ts -------------------------------------------------------------------------------- /ShoppingClient/src/modules/app/guards/isAuthenticated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/src/modules/app/guards/isAuthenticated.ts -------------------------------------------------------------------------------- /ShoppingClient/src/modules/app/module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/src/modules/app/module.ts -------------------------------------------------------------------------------- /ShoppingClient/src/modules/app/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/src/modules/app/routes.ts -------------------------------------------------------------------------------- /ShoppingClient/src/modules/app/services/authInterceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/src/modules/app/services/authInterceptor.ts -------------------------------------------------------------------------------- /ShoppingClient/src/modules/app/services/desktopIntegrationService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/src/modules/app/services/desktopIntegrationService.ts -------------------------------------------------------------------------------- /ShoppingClient/src/modules/app/services/ordersService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/src/modules/app/services/ordersService.ts -------------------------------------------------------------------------------- /ShoppingClient/src/modules/app/services/platformService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/src/modules/app/services/platformService.ts -------------------------------------------------------------------------------- /ShoppingClient/src/modules/app/services/pushService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/src/modules/app/services/pushService.ts -------------------------------------------------------------------------------- /ShoppingClient/src/modules/app/services/windowRef.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/src/modules/app/services/windowRef.ts -------------------------------------------------------------------------------- /ShoppingClient/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/src/polyfills.ts -------------------------------------------------------------------------------- /ShoppingClient/src/styles/_backdrop.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/src/styles/_backdrop.scss -------------------------------------------------------------------------------- /ShoppingClient/src/styles/_links.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/src/styles/_links.scss -------------------------------------------------------------------------------- /ShoppingClient/src/styles/_loader.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/src/styles/_loader.scss -------------------------------------------------------------------------------- /ShoppingClient/src/styles/_menu.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/src/styles/_menu.scss -------------------------------------------------------------------------------- /ShoppingClient/src/styles/_table.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/src/styles/_table.scss -------------------------------------------------------------------------------- /ShoppingClient/src/styles/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/src/styles/_utilities.scss -------------------------------------------------------------------------------- /ShoppingClient/src/styles/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/src/styles/_variables.scss -------------------------------------------------------------------------------- /ShoppingClient/src/styles/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/src/styles/global.scss -------------------------------------------------------------------------------- /ShoppingClient/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/src/tsconfig.app.json -------------------------------------------------------------------------------- /ShoppingClient/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/tsconfig.json -------------------------------------------------------------------------------- /ShoppingClient/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thinktecture/pragmatic-microservices-dotnetcore/HEAD/ShoppingClient/tslint.json --------------------------------------------------------------------------------