├── .gitattributes ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── branch-guide.md ├── deploy ├── azure │ ├── az │ │ ├── cosmos │ │ │ ├── deploycosmos.json │ │ │ ├── deploycosmos.parameters.json │ │ │ └── readme.md │ │ ├── create-resources.cmd │ │ ├── createresources.sh │ │ ├── readme.md │ │ ├── redis │ │ │ ├── readme.md │ │ │ ├── redisdeploy.json │ │ │ └── redisdeploy.parameters.json │ │ ├── servicebus │ │ │ ├── readme.md │ │ │ ├── sbusdeploy.json │ │ │ └── sbusdeploy.parameters.json │ │ ├── sql │ │ │ ├── readme.md │ │ │ ├── sqldeploy.json │ │ │ └── sqldeploy.parameters.json │ │ └── storage │ │ │ ├── catalog │ │ │ ├── deploystorage.json │ │ │ ├── deploystorage.parameters.json │ │ │ └── readme.md │ │ │ └── marketing │ │ │ ├── deploystorage.json │ │ │ ├── deploystorage.parameters.json │ │ │ └── readme.md │ └── readme.md ├── elk │ ├── Readme.md │ ├── elasticsearch │ │ ├── Dockerfile │ │ └── config │ │ │ └── elasticsearch.yml │ ├── img │ │ └── elk │ │ │ ├── azure-nsg-inboundportsConfig.png │ │ │ ├── bitnami_splash.png │ │ │ ├── create-vm-elk-azure-last-step.png │ │ │ ├── create-vm-elk-azure-summary.png │ │ │ ├── create-vm-elk-azure.png │ │ │ ├── discover-kibana.png │ │ │ ├── kibana_eshops_index.png │ │ │ ├── kibana_result.png │ │ │ ├── kibana_startup.png │ │ │ └── kibana_working.png │ ├── kibana │ │ ├── Dockerfile │ │ └── config │ │ │ └── kibana.yml │ └── logstash │ │ ├── Dockerfile │ │ ├── config │ │ └── logstash.yml │ │ └── pipeline │ │ └── logstash.conf ├── k8s │ ├── README.md │ ├── create-aks.ps1 │ ├── dashboard-adminuser.yaml │ ├── enable-tls.ps1 │ ├── helm-rbac.yaml │ ├── helm │ │ ├── aks-httpaddon-cfg.yaml │ │ ├── apigwmm │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── envoy.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── _names.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── envoy-cm.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ └── service.yaml │ │ │ └── values.yaml │ │ ├── apigwms │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── envoy.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── _names.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── envoy-cm.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ └── service.yaml │ │ │ └── values.yaml │ │ ├── apigwwm │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── envoy.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── _names.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── envoy-cm.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ └── service.yaml │ │ │ └── values.yaml │ │ ├── apigwws │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── envoy.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── _names.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ ├── envoy-cm.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ └── service.yaml │ │ │ └── values.yaml │ │ ├── app.yaml │ │ ├── basket-api │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── _names.tpl │ │ │ │ ├── configmap.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ └── service.yaml │ │ │ └── values.yaml │ │ ├── basket-data │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ └── service.yaml │ │ │ └── values.yaml │ │ ├── catalog-api │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── _names.tpl │ │ │ │ ├── configmap.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ └── service.yaml │ │ │ └── values.yaml │ │ ├── deploy-all.ps1 │ │ ├── deploy-all.sh │ │ ├── eshop-common │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── _names.tpl │ │ │ │ └── secret.yaml │ │ │ └── values.yaml │ │ ├── identity-api │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── _names.tpl │ │ │ │ ├── configmap.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress-dockerk8s.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ └── service.yaml │ │ │ └── values.yaml │ │ ├── inf.yaml │ │ ├── ingress_values.yaml │ │ ├── ingress_values_dockerk8s.yaml │ │ ├── ingress_values_linkerd.yaml │ │ ├── keystore-data │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ └── service.yaml │ │ │ └── values.yaml │ │ ├── locations-api │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── _names.tpl │ │ │ │ ├── configmap.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ └── service.yaml │ │ │ └── values.yaml │ │ ├── marketing-api │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── _names.tpl │ │ │ │ ├── configmap.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ └── service.yaml │ │ │ └── values.yaml │ │ ├── mobileshoppingagg │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── _names.tpl │ │ │ │ ├── configmap.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ └── service.yaml │ │ │ └── values.yaml │ │ ├── nosql-data │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── _names.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ └── service.yaml │ │ │ └── values.yaml │ │ ├── ordering-api │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── _names.tpl │ │ │ │ ├── configmap.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ └── service.yaml │ │ │ └── values.yaml │ │ ├── ordering-backgroundtasks │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── _names.tpl │ │ │ │ ├── configmap.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ └── service.yaml │ │ │ └── values.yaml │ │ ├── ordering-signalrhub │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── _names.tpl │ │ │ │ ├── configmap.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ └── service.yaml │ │ │ └── values.yaml │ │ ├── payment-api │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── _names.tpl │ │ │ │ ├── configmap.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ └── service.yaml │ │ │ └── values.yaml │ │ ├── rabbitmq │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── _names.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ └── service.yaml │ │ │ └── values.yaml │ │ ├── sql-data │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── _names.tpl │ │ │ │ ├── deployment.yaml │ │ │ │ └── service.yaml │ │ │ └── values.yaml │ │ ├── tls-support │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── _helpers.tpl │ │ │ │ └── issuer.yaml │ │ │ ├── values-prod.yaml │ │ │ └── values-staging.yaml │ │ ├── webhooks-api │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── _names.tpl │ │ │ │ ├── configmap.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ └── service.yaml │ │ │ └── values.yaml │ │ ├── webhooks-web │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── _names.tpl │ │ │ │ ├── configmap.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ └── service.yaml │ │ │ └── values.yaml │ │ ├── webmvc │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── _names.tpl │ │ │ │ ├── configmap.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress-dockerk8s.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ └── service.yaml │ │ │ └── values.yaml │ │ ├── webshoppingagg │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── _names.tpl │ │ │ │ ├── configmap.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ └── service.yaml │ │ │ └── values.yaml │ │ ├── webspa │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── _names.tpl │ │ │ │ ├── configmap.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ └── service.yaml │ │ │ └── values.yaml │ │ └── webstatus │ │ │ ├── .helmignore │ │ │ ├── Chart.yaml │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── _names.tpl │ │ │ ├── configmap.yaml │ │ │ ├── deployment.yaml │ │ │ ├── ingress.yaml │ │ │ └── service.yaml │ │ │ └── values.yaml │ ├── linkerd │ │ ├── basket-api-sp.yaml │ │ └── catalog-api-sp.yaml │ ├── nginx-ingress │ │ ├── local-cm.yaml │ │ ├── local-dockerk8s │ │ │ ├── identityapi-cm-fix.yaml │ │ │ ├── mvc-cm-fix.yaml │ │ │ └── mvc-fix.yaml │ │ ├── local-svc.yaml │ │ ├── mandatory.yaml │ │ └── service-nodeport.yaml │ └── nodeports │ │ ├── rabbitmq-admin.yaml │ │ └── sql-service.yaml └── windows │ ├── add-firewall-rules-for-sts-auth-thru-docker.ps1 │ └── set-dockernat-networkategory-to-private.ps1 ├── img ├── DevOps-Cover-small.png ├── Microservices-cover-small.png ├── eShopOnContainers-architecture.png ├── eshop-webmvc-app-screenshot.png ├── eshop_logo.png └── xamarin-enterprise-patterns-ebook-cover-small.png ├── obsolete ├── KUBERNETES.md ├── readme │ ├── README.ENV.md │ ├── readme-docker-compose.md │ └── readme.md └── vsts-docs │ ├── builds │ ├── images │ │ ├── android-build-step1.png │ │ ├── android-build-step2.png │ │ ├── android-build-step3.png │ │ ├── android-build-step4.png │ │ ├── android-build-step5.png │ │ ├── android-build.png │ │ ├── ios-build-step1.png │ │ ├── ios-build-step2.png │ │ ├── ios-build-step3.png │ │ └── ios-build.png │ ├── xamarin-android.md │ └── xamarin-iOS.md │ └── readme.md └── src ├── .dockerignore ├── .env ├── ApiGateways ├── Envoy │ └── config │ │ ├── mobilemarketing │ │ └── envoy.yaml │ │ ├── mobileshopping │ │ └── envoy.yaml │ │ ├── webmarketing │ │ └── envoy.yaml │ │ └── webshopping │ │ └── envoy.yaml ├── Mobile.Bff.Shopping │ ├── aggregator │ │ ├── Config │ │ │ └── UrlsConfig.cs │ │ ├── Controllers │ │ │ ├── BasketController.cs │ │ │ ├── HomeController.cs │ │ │ └── OrderController.cs │ │ ├── Dockerfile │ │ ├── Dockerfile.develop │ │ ├── Filters │ │ │ └── AuthorizeCheckOperationFilter.cs │ │ ├── Infrastructure │ │ │ └── HttpClientAuthorizationDelegatingHandler.cs │ │ ├── Mobile.Shopping.HttpAggregator.csproj │ │ ├── Models │ │ │ ├── AddBasketItemRequest.cs │ │ │ ├── BasketData.cs │ │ │ ├── CatalogItem.cs │ │ │ ├── OrderData.cs │ │ │ ├── OrderItemData.cs │ │ │ ├── UpdateBasketItemsRequest.cs │ │ │ └── UpdateBasketRequest.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Services │ │ │ ├── BasketService.cs │ │ │ ├── CatalogService.cs │ │ │ ├── GrpcCallerService.cs │ │ │ ├── IBasketService.cs │ │ │ ├── ICatalogService.cs │ │ │ ├── IOrderApiClient.cs │ │ │ ├── IOrderingService.cs │ │ │ ├── OrderApiClient.cs │ │ │ └── OrderingService.cs │ │ ├── Startup.cs │ │ ├── appsettings.json │ │ ├── appsettings.localhost.json │ │ ├── azds.yaml │ │ └── values.dev.yaml │ └── apigw │ │ ├── azds.yaml │ │ ├── configuration.json │ │ └── values.dev.yaml └── Web.Bff.Shopping │ └── aggregator │ ├── Config │ └── UrlsConfig.cs │ ├── Controllers │ ├── BasketController.cs │ ├── HomeController.cs │ └── OrderController.cs │ ├── Dockerfile │ ├── Dockerfile.develop │ ├── Filters │ └── AuthorizeCheckOperationFilter.cs │ ├── Infrastructure │ └── HttpClientAuthorizationDelegatingHandler.cs │ ├── Models │ ├── AddBasketItemRequest.cs │ ├── BasketData.cs │ ├── CatalogItem.cs │ ├── OrderData.cs │ ├── OrderItemData.cs │ ├── UpdateBasketItemsRequest.cs │ └── UpdateBasketRequest.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Services │ ├── BasketService.cs │ ├── CatalogService.cs │ ├── GrpcCallerService.cs │ ├── IBasketService.cs │ ├── ICatalogService.cs │ ├── IOrderApiClient.cs │ ├── IOrderingService.cs │ ├── OrderApiClient.cs │ └── OrderingService.cs │ ├── Startup.cs │ ├── Web.Shopping.HttpAggregator.csproj │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── appsettings.localhost.json │ ├── azds.yaml │ └── values.dev.yaml ├── BuildingBlocks ├── Devspaces.Support │ ├── Devspaces.Support.csproj │ ├── DevspacesMessageHandler.cs │ ├── HttpClientBuilderDevspacesExtensions.cs │ └── ServiceCollectionDevspacesExtensions.cs ├── EventBus │ ├── EventBus.Tests │ │ ├── EventBus.Tests.csproj │ │ ├── InMemory_SubscriptionManager_Tests.cs │ │ ├── TestIntegrationEvent.cs │ │ ├── TestIntegrationEventHandler.cs │ │ └── TestIntegrationOtherEventHandler.cs │ ├── EventBus │ │ ├── Abstractions │ │ │ ├── IDynamicIntegrationEventHandler.cs │ │ │ ├── IEventBus.cs │ │ │ └── IIntegrationEventHandler.cs │ │ ├── EventBus.csproj │ │ ├── Events │ │ │ └── IntegrationEvent.cs │ │ ├── Extensions │ │ │ └── GenericTypeExtensions.cs │ │ ├── IEventBusSubscriptionsManager.cs │ │ ├── InMemoryEventBusSubscriptionsManager.cs │ │ └── SubscriptionInfo.cs │ ├── EventBusRabbitMQ │ │ ├── DefaultRabbitMQPersistentConnection.cs │ │ ├── EventBusRabbitMQ.cs │ │ ├── EventBusRabbitMQ.csproj │ │ └── IRabbitMQPersistentConnection.cs │ ├── EventBusServiceBus │ │ ├── DefaultServiceBusPersisterConnection.cs │ │ ├── EventBusServiceBus.cs │ │ ├── EventBusServiceBus.csproj │ │ └── IServiceBusPersisterConnection.cs │ └── IntegrationEventLogEF │ │ ├── EventStateEnum.cs │ │ ├── IntegrationEventLogContext.cs │ │ ├── IntegrationEventLogEF.csproj │ │ ├── IntegrationEventLogEntry.cs │ │ ├── Services │ │ ├── IIntegrationEventLogService.cs │ │ └── IntegrationEventLogService.cs │ │ └── Utilities │ │ └── ResilientTransaction.cs └── WebHostCustomization │ └── WebHost.Customization │ ├── WebHost.Customization.csproj │ └── WebHostExtensions.cs ├── Create-DockerfileSolutionRestore.ps1 ├── DockerfileSolutionRestore.txt ├── Mobile ├── .gitignore ├── AndroidSDKManager.ps1 ├── Components │ ├── GeolocatorPlugin-1.0.3.info │ ├── GeolocatorPlugin-1.0.3.png │ └── GeolocatorPlugin-1.0.3 │ │ ├── component │ │ ├── Details.md │ │ ├── GettingStarted.md │ │ ├── License.md │ │ ├── Manifest.xml │ │ └── icons │ │ │ ├── GeolocatorPlugin_128x128.png │ │ │ └── GeolocatorPlugin_512x512.png │ │ └── samples │ │ └── GeolocatorSample │ │ ├── GeolocatorSample.sln │ │ └── GeolocatorSample │ │ ├── GeolocatorSample.Droid │ │ ├── Assets │ │ │ └── AboutAssets.txt │ │ ├── GeolocatorSample.Droid.csproj │ │ ├── MainActivity.cs │ │ ├── PluginsHelp │ │ │ └── GeolocatorReadme.txt │ │ ├── Properties │ │ │ ├── AndroidManifest.xml │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── AboutResources.txt │ │ │ ├── Resource.Designer.cs │ │ │ ├── drawable-hdpi │ │ │ │ └── icon.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── icon.png │ │ │ ├── drawable-xxhdpi │ │ │ │ └── icon.png │ │ │ └── drawable │ │ │ │ └── icon.png │ │ └── packages.config │ │ ├── GeolocatorSample.WinPhone │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ │ ├── AlignmentGrid.png │ │ │ ├── ApplicationIcon.png │ │ │ └── Tiles │ │ │ │ ├── FlipCycleTileLarge.png │ │ │ │ ├── FlipCycleTileMedium.png │ │ │ │ ├── FlipCycleTileSmall.png │ │ │ │ ├── IconicTileMediumLarge.png │ │ │ │ └── IconicTileSmall.png │ │ ├── GeolocatorSample.WinPhone.csproj │ │ ├── LocalizedStrings.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── PluginsHelp │ │ │ └── GeolocatorReadme.txt │ │ ├── Properties │ │ │ ├── AppManifest.xml │ │ │ ├── AssemblyInfo.cs │ │ │ └── WMAppManifest.xml │ │ ├── README_FIRST.txt │ │ ├── Resources │ │ │ ├── AppResources.Designer.cs │ │ │ └── AppResources.resx │ │ ├── SplashScreenImage.jpg │ │ ├── Toolkit.Content │ │ │ ├── ApplicationBar.Add.png │ │ │ ├── ApplicationBar.Cancel.png │ │ │ ├── ApplicationBar.Check.png │ │ │ ├── ApplicationBar.Delete.png │ │ │ └── ApplicationBar.Select.png │ │ └── packages.config │ │ ├── GeolocatorSample.iOS │ │ ├── AppDelegate.cs │ │ ├── Entitlements.plist │ │ ├── GeolocatorSample.iOS.csproj │ │ ├── Info.plist │ │ ├── Main.cs │ │ ├── PluginsHelp │ │ │ └── GeolocatorReadme.txt │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-Portrait.png │ │ │ ├── Default-Portrait@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x.png │ │ │ ├── Icon-60@2x.png │ │ │ ├── Icon-60@3x.png │ │ │ ├── Icon-76.png │ │ │ ├── Icon-76@2x.png │ │ │ ├── Icon-Small-40.png │ │ │ ├── Icon-Small-40@2x.png │ │ │ ├── Icon-Small-40@3x.png │ │ │ ├── Icon-Small.png │ │ │ ├── Icon-Small@2x.png │ │ │ ├── Icon-Small@3x.png │ │ │ └── LaunchScreen.storyboard │ │ ├── iTunesArtwork │ │ ├── iTunesArtwork@2x │ │ └── packages.config │ │ └── GeolocatorSample │ │ ├── App.cs │ │ ├── GeolocatorSample.csproj │ │ ├── PluginsHelp │ │ └── GeolocatorReadme.txt │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── packages.config ├── Images │ ├── AndroidEmulator.png │ ├── Auth.png │ ├── Catalog.png │ ├── Filter.png │ ├── MacAgent.png │ ├── OrderDetail.png │ ├── Preview.png │ ├── Profile.png │ ├── Settings.png │ ├── ShoppingCart.png │ ├── Unsupported52.0.png │ ├── Updates.png │ ├── could-not-connect-to-the-debugger.png │ ├── eShopOnContainers_Architecture_Diagram.png │ ├── launch-hyperv-manager.png │ ├── set-compatibility-vs-sml.png │ └── vm-settings.png ├── README.md ├── eShopOnContainers-Android.sln ├── eShopOnContainers-MobileApps.sln ├── eShopOnContainers-iOS.sln └── eShopOnContainers │ ├── CommonResources │ └── Fonts │ │ ├── Montserrat-Bold.ttf │ │ ├── Montserrat-Regular.ttf │ │ └── SourceSansPro-Regular.ttf │ ├── eShopOnContainers.Core │ ├── Animations │ │ ├── Base │ │ │ ├── AnimationBase.cs │ │ │ └── EasingType.cs │ │ ├── FadeToAnimation.cs │ │ └── StoryBoard.cs │ ├── App.xaml │ ├── App.xaml.cs │ ├── Behaviors │ │ ├── Base │ │ │ └── BindableBehavior.cs │ │ ├── EventToCommandBehavior.cs │ │ └── LineColorBehavior.cs │ ├── Controls │ │ ├── AddBasketButton.xaml │ │ ├── AddBasketButton.xaml.cs │ │ ├── CustomTabbedPage.cs │ │ └── ToggleButton.cs │ ├── Converters │ │ ├── CountToBoolConverter.cs │ │ ├── DatetimeConverter.cs │ │ ├── DoubleConverter.cs │ │ ├── FirstValidationErrorConverter.cs │ │ ├── ImageConverter.cs │ │ ├── InverseBoolConverter.cs │ │ ├── InverseCountToBoolConverter.cs │ │ ├── ItemTappedEventArgsConverter.cs │ │ ├── ItemsToHeightConverter.cs │ │ ├── StringNullOrEmptyBoolConverter.cs │ │ ├── ToUpperConverter.cs │ │ ├── WebNavigatedEventArgsConverter.cs │ │ └── WebNavigatingEventArgsConverter.cs │ ├── Effects │ │ ├── EntryLineColorEffect.cs │ │ └── ThemeEffects.cs │ ├── Exceptions │ │ └── ServiceAuthenticationException.cs │ ├── Extensions │ │ └── ObservableExtension.cs │ ├── GlobalSettings.cs │ ├── Helpers │ │ ├── EasingHelper.cs │ │ ├── RandomNumberGenerator.cs │ │ └── UriHelper.cs │ ├── Models │ │ ├── Basket │ │ │ ├── BasketCheckout.cs │ │ │ ├── BasketItem.cs │ │ │ └── CustomerBasket.cs │ │ ├── Catalog │ │ │ ├── CatalogBrand.cs │ │ │ ├── CatalogItem.cs │ │ │ ├── CatalogRoot.cs │ │ │ └── CatalogType.cs │ │ ├── Location │ │ │ ├── GeolocationError.cs │ │ │ ├── GeolocationException.cs │ │ │ ├── Location.cs │ │ │ └── Position.cs │ │ ├── Marketing │ │ │ ├── Campaign.cs │ │ │ ├── CampaignItem.cs │ │ │ └── CampaignRoot.cs │ │ ├── Navigation │ │ │ └── TabParameter.cs │ │ ├── Orders │ │ │ ├── CancelOrderCommand.cs │ │ │ ├── CardType.cs │ │ │ ├── Order.cs │ │ │ ├── OrderItem.cs │ │ │ └── OrderStatus.cs │ │ ├── Permissions │ │ │ ├── Permission.cs │ │ │ └── PermissionStatus.cs │ │ ├── Token │ │ │ └── UserToken.cs │ │ └── User │ │ │ ├── Address.cs │ │ │ ├── LogoutParameter.cs │ │ │ ├── PaymentInfo.cs │ │ │ └── UserInfo.cs │ ├── Services │ │ ├── Basket │ │ │ ├── BasketMockService.cs │ │ │ ├── BasketService.cs │ │ │ └── IBasketService.cs │ │ ├── Catalog │ │ │ ├── CatalogMockService.cs │ │ │ ├── CatalogService.cs │ │ │ └── ICatalogService.cs │ │ ├── Common │ │ │ └── Common.cs │ │ ├── Dependency │ │ │ ├── DependencyService.cs │ │ │ └── IDependencyService.cs │ │ ├── Dialog │ │ │ ├── DialogService.cs │ │ │ └── IDialogService.cs │ │ ├── FixUri │ │ │ ├── FixUriService.cs │ │ │ └── IFixUriService.cs │ │ ├── Identity │ │ │ ├── AuthorizeRequest.cs │ │ │ ├── IIdentityService.cs │ │ │ └── IdentityService.cs │ │ ├── Location │ │ │ ├── ILocationService.cs │ │ │ ├── ILocationServiceImplementation.cs │ │ │ └── LocationService.cs │ │ ├── Marketing │ │ │ ├── CampaignMockService.cs │ │ │ ├── CampaignService.cs │ │ │ └── ICampaignService.cs │ │ ├── Navigation │ │ │ ├── INavigationService.cs │ │ │ └── NavigationService.cs │ │ ├── OpenUrl │ │ │ ├── IOpenUrlService.cs │ │ │ └── OpenUrlService.cs │ │ ├── Order │ │ │ ├── IOrderService.cs │ │ │ ├── OrderMockService.cs │ │ │ └── OrderService.cs │ │ ├── Permissions │ │ │ └── IPermissionsService.cs │ │ ├── RequestProvider │ │ │ ├── HttpRequestExceptionEx.cs │ │ │ ├── IRequestProvider.cs │ │ │ └── RequestProvider.cs │ │ ├── Settings │ │ │ ├── ISettingsService.cs │ │ │ └── SettingsService.cs │ │ └── User │ │ │ ├── IUserService.cs │ │ │ ├── UserMockService.cs │ │ │ └── UserService.cs │ ├── TinyIoC │ │ └── TinyIoC.cs │ ├── Triggers │ │ └── BeginAnimation.cs │ ├── Validations │ │ ├── IValidationRule.cs │ │ ├── IValidity.cs │ │ ├── IsNotNullOrEmptyRule.cs │ │ └── ValidatableObject.cs │ ├── ViewModels │ │ ├── Base │ │ │ ├── ExtendedBindableObject.cs │ │ │ ├── MessageKeys.cs │ │ │ ├── ViewModelBase.cs │ │ │ └── ViewModelLocator.cs │ │ ├── BasketViewModel.cs │ │ ├── CampaignDetailsViewModel.cs │ │ ├── CampaignViewModel.cs │ │ ├── CatalogViewModel.cs │ │ ├── CheckoutViewModel.cs │ │ ├── LoginViewModel.cs │ │ ├── MainViewModel.cs │ │ ├── OrderDetailViewModel.cs │ │ ├── ProfileViewModel.cs │ │ └── SettingsViewModel.cs │ ├── Views │ │ ├── BasketView.xaml │ │ ├── BasketView.xaml.cs │ │ ├── CampaignDetailsView.xaml │ │ ├── CampaignDetailsView.xaml.cs │ │ ├── CampaignView.xaml │ │ ├── CampaignView.xaml.cs │ │ ├── CatalogView.xaml │ │ ├── CatalogView.xaml.cs │ │ ├── CheckoutView.xaml │ │ ├── CheckoutView.xaml.cs │ │ ├── CustomNavigationView.xaml │ │ ├── CustomNavigationView.xaml.cs │ │ ├── FiltersView.xaml │ │ ├── FiltersView.xaml.cs │ │ ├── LoginView.xaml │ │ ├── LoginView.xaml.cs │ │ ├── MainView.xaml │ │ ├── MainView.xaml.cs │ │ ├── OrderDetailView.xaml │ │ ├── OrderDetailView.xaml.cs │ │ ├── ProfileView.xaml │ │ ├── ProfileView.xaml.cs │ │ ├── SettingsView.xaml │ │ ├── SettingsView.xaml.cs │ │ └── Templates │ │ │ ├── BasketItemTemplate.xaml │ │ │ ├── BasketItemTemplate.xaml.cs │ │ │ ├── CampaignTemplate.xaml │ │ │ ├── CampaignTemplate.xaml.cs │ │ │ ├── OrderItemTemplate.xaml │ │ │ ├── OrderItemTemplate.xaml.cs │ │ │ ├── OrderTemplate.xaml │ │ │ ├── OrderTemplate.xaml.cs │ │ │ ├── ProductTemplate.xaml │ │ │ └── ProductTemplate.xaml.cs │ └── eShopOnContainers.Core.csproj │ ├── eShopOnContainers.Droid │ ├── Activities │ │ ├── MainActivity.cs │ │ └── SplashActivity.cs │ ├── Assets │ │ └── AboutAssets.txt │ ├── Effects │ │ ├── BaseContainerEffect.cs │ │ ├── CircleEffect.cs │ │ └── EntryLineColorEffect.cs │ ├── Extensions │ │ ├── LocationExtensions.cs │ │ └── ViewExtensions.cs │ ├── MainApplication.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Renderers │ │ ├── BadgeView.cs │ │ ├── CustomNavigationPageRenderer.cs │ │ ├── CustomTabbedPageRenderer.cs │ │ └── SlideDownMenuPageRenderer.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.Designer.cs │ │ ├── drawable-hdpi │ │ │ ├── app_settings.png │ │ │ ├── background.png │ │ │ ├── header_logo.png │ │ │ ├── icon.png │ │ │ ├── menu_campaigns.png │ │ │ ├── menu_cart.png │ │ │ ├── menu_filter.png │ │ │ ├── menu_profile.png │ │ │ ├── product_add.png │ │ │ ├── switch_off.png │ │ │ └── switch_on.png │ │ ├── drawable-xhdpi │ │ │ ├── app_settings.png │ │ │ ├── background.png │ │ │ ├── header_logo.png │ │ │ ├── icon.png │ │ │ ├── menu_campaigns.png │ │ │ ├── menu_cart.png │ │ │ ├── menu_filter.png │ │ │ ├── menu_profile.png │ │ │ ├── product_add.png │ │ │ ├── switch_off.png │ │ │ └── switch_on.png │ │ ├── drawable-xxhdpi │ │ │ ├── app_settings.png │ │ │ ├── background.png │ │ │ ├── header_logo.png │ │ │ ├── icon.png │ │ │ ├── menu_campaigns.png │ │ │ ├── menu_cart.png │ │ │ ├── menu_filter.png │ │ │ ├── menu_profile.png │ │ │ ├── product_add.png │ │ │ ├── switch_off.png │ │ │ └── switch_on.png │ │ ├── drawable │ │ │ ├── banner.png │ │ │ ├── default_campaign.png │ │ │ ├── default_product.png │ │ │ ├── fake_campaign_01.png │ │ │ ├── fake_campaign_02.png │ │ │ ├── fake_product_01.png │ │ │ ├── fake_product_02.png │ │ │ ├── fake_product_03.png │ │ │ ├── fake_product_04.png │ │ │ ├── fake_product_05.png │ │ │ ├── icon.png │ │ │ └── noimage.png │ │ ├── layout │ │ │ ├── TabLayout.axml │ │ │ ├── Tabs.axml │ │ │ └── Toolbar.axml │ │ └── values │ │ │ ├── colors.xml │ │ │ └── styles.xml │ ├── Services │ │ ├── GeolocationSingleListener.cs │ │ ├── LocationServiceImplementation.cs │ │ └── PermissionsService.cs │ ├── app.config │ ├── eShopOnContainers.Droid.csproj │ └── packages.config │ ├── eShopOnContainers.TestRunner.Droid │ ├── Assets │ │ └── AboutAssets.txt │ ├── MainActivity.cs │ ├── MainApplication.cs │ ├── Properties │ │ ├── AndroidManifest.xml │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── AboutResources.txt │ │ ├── Resource.Designer.cs │ │ ├── drawable │ │ │ └── Icon.png │ │ ├── layout │ │ │ └── Main.axml │ │ └── values │ │ │ └── Strings.xml │ ├── app.config │ ├── eShopOnContainers.TestRunner.Droid.csproj │ └── eShopOnContainers.TestRunner.Droid.csproj.bak │ ├── eShopOnContainers.TestRunner.Windows │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── StoreLogo.png │ │ └── Wide310x150Logo.scale-200.png │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ └── eShopOnContainers.TestRunner.Windows.csproj │ ├── eShopOnContainers.TestRunner.iOS │ ├── AppDelegate.cs │ ├── Entitlements.plist │ ├── Info.plist │ ├── Main.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ └── LaunchScreen.xib │ ├── app.config │ └── eShopOnContainers.TestRunner.iOS.csproj │ ├── eShopOnContainers.UnitTests │ ├── Behaviors │ │ └── EventToCommandBehaviorTests.cs │ ├── Mocks │ │ ├── MockEventToCommandBehavior.cs │ │ ├── MockSettingsService.cs │ │ └── MockViewModel.cs │ ├── Services │ │ ├── BasketServiceTests.cs │ │ ├── CatalogServiceTests.cs │ │ ├── MarketingServiceTests.cs │ │ └── OrdersServiceTests.cs │ ├── ViewModels │ │ ├── CatalogViewModelTests.cs │ │ ├── MainViewModelTests.cs │ │ ├── MarketingViewModelTests.cs │ │ ├── MockViewModelTests.cs │ │ └── OrderViewModelTests.cs │ └── eShopOnContainers.UnitTests.csproj │ ├── eShopOnContainers.Windows │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── StoreLogo.png │ │ ├── Wide310x150Logo.scale-200.png │ │ ├── app_settings.png │ │ ├── banner.png │ │ ├── circle_button_background.png │ │ ├── default_campaign.png │ │ ├── default_product.png │ │ ├── fake_campaign_01.png │ │ ├── fake_campaign_02.png │ │ ├── fake_product_01.png │ │ ├── fake_product_02.png │ │ ├── fake_product_03.png │ │ ├── fake_product_04.png │ │ ├── fake_product_05.png │ │ ├── menu_campaigns.png │ │ ├── menu_cart.png │ │ ├── menu_filter.png │ │ ├── menu_profile.png │ │ ├── noimage.png │ │ ├── product_add.png │ │ ├── switchOff.png │ │ └── switchOn.png │ ├── Controls │ │ ├── TabItem.xaml │ │ └── TabItem.xaml.cs │ ├── Converters │ │ ├── TabBadgeColorConverter.cs │ │ ├── TabBadgeTextConverter.cs │ │ └── TabIconConverter.cs │ ├── Effects │ │ └── EntryLineColorEffect.cs │ ├── Extensions │ │ └── VisualTreeExtensions.cs │ ├── Helpers │ │ ├── ColorHelper.cs │ │ └── Timeout.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── Renderers │ │ ├── CustomTabbedPageRenderer.cs │ │ └── SlideDownMenuPageRenderer.cs │ ├── Services │ │ └── LocationServiceImplementation.cs │ └── eShopOnContainers.Windows.csproj │ └── eShopOnContainers.iOS │ ├── AppDelegate.cs │ ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-60@2x.png │ │ ├── Icon-76.png │ │ ├── Icon-76@2x.png │ │ ├── Icon-Small-40.png │ │ ├── Icon-Small-40@2x.png │ │ ├── Icon-Small.png │ │ └── Icon-Small@2x.png │ └── LaunchImage.launchimage │ │ ├── Contents.json │ │ ├── Default-1242@3x.png │ │ ├── Default-568h@2x.png │ │ ├── Default-750@2x.png │ │ ├── Default-Portrait.png │ │ ├── Default-Portrait@2x.png │ │ ├── Default.png │ │ └── Default@2x.png │ ├── Effects │ ├── CircleEffect.cs │ └── EntryLineColorEffect.cs │ ├── Entitlements.plist │ ├── Info.plist │ ├── Main.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Renderers │ ├── CustomTabbedPageRenderer.cs │ └── SlideDownMenuPageRenderer.cs │ ├── Resources │ ├── Default-568h@2x.png │ ├── Default-Portrait.png │ ├── Default-Portrait@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── Icon-60@2x.png │ ├── Icon-60@3x.png │ ├── Icon-76.png │ ├── Icon-76@2x.png │ ├── Icon-Small-40.png │ ├── Icon-Small-40@2x.png │ ├── Icon-Small-40@3x.png │ ├── Icon-Small.png │ ├── Icon-Small@2x.png │ ├── Icon-Small@3x.png │ ├── LaunchScreen.storyboard │ ├── Logo.png │ ├── app_settings.png │ ├── app_settings@2x.png │ ├── app_settings@3x.png │ ├── banner.png │ ├── default_campaign.png │ ├── default_product.png │ ├── fake_campaign_01.png │ ├── fake_campaign_02.png │ ├── fake_product_01.png │ ├── fake_product_02.png │ ├── fake_product_03.png │ ├── fake_product_04.png │ ├── fake_product_05.png │ ├── menu_campaigns.png │ ├── menu_campaigns@2x.png │ ├── menu_campaigns@3x.png │ ├── menu_cart.png │ ├── menu_cart@2x.png │ ├── menu_cart@3x.png │ ├── menu_filter.png │ ├── menu_filter@2x.png │ ├── menu_filter@3x.png │ ├── menu_profile.png │ ├── menu_profile@2x.png │ ├── menu_profile@3x.png │ ├── noimage.png │ ├── product_add.png │ ├── product_add@2x.png │ ├── product_add@3x.png │ ├── switchOff.png │ ├── switchOff@2x.png │ ├── switchOff@3x.png │ ├── switchOn.png │ ├── switchOn@2x.png │ └── switchOn@3x.png │ ├── Services │ ├── GeolocationSingleUpdateDelegate.cs │ ├── LocationServiceImplementation.cs │ └── PermissionsService.cs │ ├── app.config │ ├── eShopOnContainers.iOS.csproj │ ├── iTunesArtwork │ └── iTunesArtwork@2x ├── NuGet.config ├── Services ├── Basket │ ├── Basket.API │ │ ├── .dockerignore │ │ ├── Auth │ │ │ ├── Client │ │ │ │ ├── enable-token-client.js │ │ │ │ ├── oidc-token-manager.js │ │ │ │ └── popup.html │ │ │ └── Server │ │ │ │ └── AuthorizationHeaderParameterOperationFilter.cs │ │ ├── Basket.API.csproj │ │ ├── BasketSettings.cs │ │ ├── Controllers │ │ │ ├── BasketController.cs │ │ │ └── HomeController.cs │ │ ├── Dockerfile │ │ ├── Dockerfile.develop │ │ ├── Grpc │ │ │ └── BasketService.cs │ │ ├── Infrastructure │ │ │ ├── ActionResults │ │ │ │ └── InternalServerErrorObjectResult.cs │ │ │ ├── Exceptions │ │ │ │ ├── BasketDomainException.cs │ │ │ │ └── FailingMiddlewareAppBuilderExtensions.cs │ │ │ ├── Filters │ │ │ │ ├── HttpGlobalExceptionFilter.cs │ │ │ │ ├── JsonErrorResponse.cs │ │ │ │ └── ValidateModelStateFilter.cs │ │ │ ├── Middlewares │ │ │ │ ├── AuthorizeCheckOperationFilter.cs │ │ │ │ ├── ByPassAuthMiddleware.cs │ │ │ │ ├── FailingMiddleware.cs │ │ │ │ ├── FailingOptions.cs │ │ │ │ ├── FailingStartupFilter.cs │ │ │ │ └── FailingWebHostBuilderExtensions.cs │ │ │ └── Repositories │ │ │ │ └── RedisBasketRepository.cs │ │ ├── IntegrationEvents │ │ │ ├── EventHandling │ │ │ │ ├── OrderStartedIntegrationEventHandler.cs │ │ │ │ └── ProductPriceChangedIntegrationEventHandler.cs │ │ │ └── Events │ │ │ │ ├── OrderStartedIntegrationEvent.cs │ │ │ │ ├── ProductPriceChangedIntegrationEvent.cs │ │ │ │ └── UserCheckoutAcceptedIntegrationEvent.cs │ │ ├── Model │ │ │ ├── BasketCheckout.cs │ │ │ ├── BasketItem.cs │ │ │ ├── CustomerBasket.cs │ │ │ └── IBasketRepository.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Proto │ │ │ └── basket.proto │ │ ├── README.md │ │ ├── Services │ │ │ ├── IIdentityService.cs │ │ │ └── IdentityService.cs │ │ ├── Startup.cs │ │ ├── TestHttpResponseTrailersFeature.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── azds.yaml │ │ ├── values.dev.yaml │ │ └── web.config │ ├── Basket.FunctionalTests │ │ ├── Base │ │ │ ├── AutoAuthorizeMiddleware.cs │ │ │ ├── BasketScenarioBase.cs │ │ │ ├── BasketTestStartup.cs │ │ │ └── HttpClientExtensions.cs │ │ ├── Basket.FunctionalTests.csproj │ │ ├── BasketScenarios.cs │ │ ├── RedisBasketRepositoryTests.cs │ │ └── appsettings.json │ └── Basket.UnitTests │ │ ├── Application │ │ ├── BasketWebApiTest.cs │ │ └── CartControllerTest.cs │ │ └── Basket.UnitTests.csproj ├── Catalog │ ├── Catalog.API │ │ ├── Catalog.API.csproj │ │ ├── CatalogSettings.cs │ │ ├── Controllers │ │ │ ├── CatalogController.cs │ │ │ ├── HomeController.cs │ │ │ └── PicController.cs │ │ ├── Dockerfile │ │ ├── Dockerfile.develop │ │ ├── Extensions │ │ │ ├── CatalogItemExtensions.cs │ │ │ ├── HostExtensions.cs │ │ │ ├── LinqSelectExtensions.cs │ │ │ └── WebHostExtensions.cs │ │ ├── Grpc │ │ │ └── CatalogService.cs │ │ ├── Infrastructure │ │ │ ├── ActionResults │ │ │ │ └── InternalServerErrorObjectResult.cs │ │ │ ├── CatalogContext.cs │ │ │ ├── CatalogContextSeed.cs │ │ │ ├── CatalogMigrations │ │ │ │ ├── 20161103152832_Initial.Designer.cs │ │ │ │ ├── 20161103152832_Initial.cs │ │ │ │ ├── 20161103153420_UpdateTableNames.Designer.cs │ │ │ │ ├── 20161103153420_UpdateTableNames.cs │ │ │ │ ├── 20170314083211_AddEventTable.Designer.cs │ │ │ │ ├── 20170314083211_AddEventTable.cs │ │ │ │ ├── 20170316012921_RefactoringToIntegrationEventLog.Designer.cs │ │ │ │ ├── 20170316012921_RefactoringToIntegrationEventLog.cs │ │ │ │ ├── 20170316120022_RefactoringEventBusNamespaces.Designer.cs │ │ │ │ ├── 20170316120022_RefactoringEventBusNamespaces.cs │ │ │ │ ├── 20170322124244_RemoveIntegrationEventLogs.Designer.cs │ │ │ │ ├── 20170322124244_RemoveIntegrationEventLogs.cs │ │ │ │ ├── 20170509130025_AddStockProductItem.Designer.cs │ │ │ │ ├── 20170509130025_AddStockProductItem.cs │ │ │ │ ├── 20170530133114_AddPictureFileName.Designer.cs │ │ │ │ ├── 20170530133114_AddPictureFileName.cs │ │ │ │ └── CatalogContextModelSnapshot.cs │ │ │ ├── EntityConfigurations │ │ │ │ ├── CatalogBrandEntityTypeConfiguration.cs │ │ │ │ ├── CatalogItemEntityTypeConfiguration.cs │ │ │ │ └── CatalogTypeEntityTypeConfiguration.cs │ │ │ ├── Exceptions │ │ │ │ └── CatalogDomainException.cs │ │ │ ├── Filters │ │ │ │ └── HttpGlobalExceptionFilter.cs │ │ │ └── IntegrationEventMigrations │ │ │ │ ├── 20170322145434_IntegrationEventInitial.Designer.cs │ │ │ │ ├── 20170322145434_IntegrationEventInitial.cs │ │ │ │ ├── 20190507184807_AddTransactionId.Designer.cs │ │ │ │ ├── 20190507184807_AddTransactionId.cs │ │ │ │ ├── IntegrationEventLogContextDesignTimeFactory.cs │ │ │ │ └── IntegrationEventLogContextModelSnapshot.cs │ │ ├── IntegrationEvents │ │ │ ├── CatalogIntegrationEventService.cs │ │ │ ├── EventHandling │ │ │ │ ├── AnyFutureIntegrationEventHandler.cs.txt │ │ │ │ ├── OrderStatusChangedToAwaitingValidationIntegrationEventHandler.cs │ │ │ │ └── OrderStatusChangedToPaidIntegrationEventHandler.cs │ │ │ ├── Events │ │ │ │ ├── OrderStatusChangedToAwaitingValidationIntegrationEvent.cs │ │ │ │ ├── OrderStatusChangedToPaidIntegrationEvent.cs │ │ │ │ ├── OrderStockConfirmedIntegrationEvent.cs │ │ │ │ ├── OrderStockRejectedIntegrationEvent.cs │ │ │ │ └── ProductPriceChangedIntegrationEvent.cs │ │ │ └── ICatalogIntegrationEventService.cs │ │ ├── Model │ │ │ ├── CatalogBrand.cs │ │ │ ├── CatalogItem.cs │ │ │ └── CatalogType.cs │ │ ├── Pics │ │ │ ├── 1.png │ │ │ ├── 10.png │ │ │ ├── 11.png │ │ │ ├── 12.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── 6.png │ │ │ ├── 7.png │ │ │ ├── 8.png │ │ │ └── 9.png │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Proto │ │ │ └── catalog.proto │ │ ├── README.md │ │ ├── Setup │ │ │ ├── CatalogBrands.csv │ │ │ ├── CatalogItems.csv │ │ │ ├── CatalogItems.zip │ │ │ └── CatalogTypes.csv │ │ ├── Startup.cs │ │ ├── ViewModel │ │ │ └── PaginatedItemsViewModel.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── azds.yaml │ │ ├── eshop.pfx │ │ ├── values.dev.yaml │ │ └── web.config │ ├── Catalog.FunctionalTests │ │ ├── Catalog.FunctionalTests.csproj │ │ ├── CatalogScenarioBase.cs │ │ ├── CatalogScenarios.cs │ │ ├── Setup │ │ │ ├── CatalogBrands.csv │ │ │ ├── CatalogItems.csv │ │ │ ├── CatalogItems.zip │ │ │ └── CatalogTypes.csv │ │ └── appsettings.json │ └── Catalog.UnitTests │ │ ├── Application │ │ └── CatalogControllerTest.cs │ │ └── Catalog.UnitTests.csproj ├── Identity │ └── Identity.API │ │ ├── .dockerignore │ │ ├── AppSettings.cs │ │ ├── Certificate │ │ ├── Certificate.cs │ │ └── idsrv3test.pfx │ │ ├── Configuration │ │ └── Config.cs │ │ ├── Controllers │ │ ├── AccountController.cs │ │ ├── ConsentController.cs │ │ └── HomeController.cs │ │ ├── Data │ │ ├── ApplicationDbContext.cs │ │ ├── ApplicationDbContextSeed.cs │ │ └── ConfigurationDbContextSeed.cs │ │ ├── Devspaces │ │ ├── DevspacesRedirectUriValidator.cs │ │ └── IdentityDevspacesBuilderExtensions.cs │ │ ├── Dockerfile │ │ ├── Dockerfile.develop │ │ ├── Extensions │ │ └── LinqSelectExtensions.cs │ │ ├── Factories │ │ ├── ApplicationDbContextFactory.cs │ │ ├── ConfigurationDbContextFactory.cs │ │ └── PersistedGrantDbContextFactory.cs │ │ ├── IWebHostExtensions.cs │ │ ├── Identity.API.csproj │ │ ├── Migrations │ │ ├── 20190729091724_InitialMigration.Designer.cs │ │ ├── 20190729091724_InitialMigration.cs │ │ ├── ApplicationDbContextModelSnapshot.cs │ │ ├── ConfigurationDb │ │ │ ├── 20190729092011_InitialConfigurationMigration.Designer.cs │ │ │ ├── 20190729092011_InitialConfigurationMigration.cs │ │ │ └── ConfigurationDbContextModelSnapshot.cs │ │ └── PersistedGrantDb │ │ │ ├── 20190729092100_InitialPersistedGrantMigration.Designer.cs │ │ │ ├── 20190729092100_InitialPersistedGrantMigration.cs │ │ │ └── PersistedGrantDbContextModelSnapshot.cs │ │ ├── Models │ │ ├── AccountViewModels │ │ │ ├── ConsentInputModel.cs │ │ │ ├── ConsentViewModel.cs │ │ │ ├── ForgotPasswordViewModel.cs │ │ │ ├── LoggedOutViewModel.cs │ │ │ ├── LoginViewModel.cs │ │ │ ├── LogoutViewModel.cs │ │ │ ├── RegisterViewModel.cs │ │ │ ├── ResetPasswordViewModel.cs │ │ │ ├── SendCodeViewModel.cs │ │ │ └── VerifyCodeViewModel.cs │ │ ├── ApplicationUser.cs │ │ ├── ErrorViewModel.cs │ │ └── ManageViewModels │ │ │ ├── AddPhoneNumberViewModel.cs │ │ │ ├── ChangePasswordViewModel.cs │ │ │ ├── ConfigureTwoFactorViewModel.cs │ │ │ ├── FactorViewModel.cs │ │ │ ├── IndexViewModel.cs │ │ │ ├── SetPasswordViewModel.cs │ │ │ └── VerifyPhoneNumberViewModel.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── README.md │ │ ├── Services │ │ ├── EFLoginService.cs │ │ ├── ILoginService.cs │ │ ├── IRedirectService.cs │ │ ├── ProfileService.cs │ │ └── RedirectService.cs │ │ ├── Setup │ │ ├── Users.csv │ │ └── images.zip │ │ ├── Startup.cs │ │ ├── Views │ │ ├── Account │ │ │ ├── LoggedOut.cshtml │ │ │ ├── Login.cshtml │ │ │ ├── Logout.cshtml │ │ │ ├── Redirecting.cshtml │ │ │ └── Register.cshtml │ │ ├── Consent │ │ │ ├── Index.cshtml │ │ │ └── _ScopeListItem.cshtml │ │ ├── Home │ │ │ └── Index.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ ├── _Layout.cshtml │ │ │ ├── _LoginPartial.cshtml │ │ │ ├── _ValidationScriptsPartial.cshtml │ │ │ └── _ValidationSummary.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ │ ├── appsettings.json │ │ ├── azds.yaml │ │ ├── bundleconfig.json │ │ ├── libman.json │ │ ├── values.dev.yaml │ │ ├── web.config │ │ └── wwwroot │ │ ├── _references.js │ │ ├── css │ │ ├── site.css │ │ └── site.min.css │ │ ├── favicon.ico │ │ ├── fonts │ │ ├── Montserrat-Bold.eot │ │ ├── Montserrat-Bold.svg │ │ ├── Montserrat-Bold.ttf │ │ ├── Montserrat-Bold.woff │ │ ├── Montserrat-Bold.woff2 │ │ ├── Montserrat-Regular.eot │ │ ├── Montserrat-Regular.svg │ │ ├── Montserrat-Regular.ttf │ │ ├── Montserrat-Regular.woff │ │ └── Montserrat-Regular.woff2 │ │ ├── icon.jpg │ │ ├── icon.png │ │ ├── images │ │ ├── arrow-down.png │ │ ├── arrow-right.svg │ │ ├── banner1.svg │ │ ├── banner2.svg │ │ ├── banner3.svg │ │ ├── banner4.svg │ │ ├── brand.PNG │ │ ├── brand_dark.PNG │ │ ├── cart.png │ │ ├── logout.PNG │ │ ├── main_banner.png │ │ ├── main_banner_text.png │ │ ├── main_banner_text.svg │ │ ├── main_footer_text.PNG │ │ ├── my_orders.PNG │ │ └── refresh.svg │ │ └── js │ │ ├── site.js │ │ └── site.min.js ├── Location │ ├── Locations.API │ │ ├── Controllers │ │ │ ├── HomeController.cs │ │ │ └── LocationsController.cs │ │ ├── Dockerfile │ │ ├── Dockerfile.develop │ │ ├── Infrastructure │ │ │ ├── ActionResults │ │ │ │ └── InternalServerErrorObjectResult.cs │ │ │ ├── Exceptions │ │ │ │ └── LocationDomainException.cs │ │ │ ├── Filters │ │ │ │ ├── AuthorizeCheckOperationFilter.cs │ │ │ │ └── HttpGlobalExceptionFilter.cs │ │ │ ├── LocationsContext.cs │ │ │ ├── LocationsContextSeed.cs │ │ │ ├── Middlewares │ │ │ │ └── ByPassAuthMiddleware.cs │ │ │ ├── Repositories │ │ │ │ ├── ILocationsRepository.cs │ │ │ │ └── LocationsRepository.cs │ │ │ └── Services │ │ │ │ ├── IIdentityService.cs │ │ │ │ ├── ILocationsService.cs │ │ │ │ ├── IdentityService.cs │ │ │ │ └── LocationsService.cs │ │ ├── IntegrationEvents │ │ │ └── Events │ │ │ │ └── UserLocationUpdatedIntegrationEvent.cs │ │ ├── LocationSettings.cs │ │ ├── Locations.API.csproj │ │ ├── Model │ │ │ ├── Core │ │ │ │ ├── LocationPoint.cs │ │ │ │ └── LocationPolygon.cs │ │ │ ├── Locations.cs │ │ │ ├── UserLocation.cs │ │ │ └── UserLocationDetails.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Startup.cs │ │ ├── ViewModel │ │ │ └── LocationRequest.cs │ │ ├── appsettings.json │ │ ├── azds.yaml │ │ └── values.dev.yaml │ └── Locations.FunctionalTests │ │ ├── LocationTestsStartup.cs │ │ ├── Locations.FunctionalTests.csproj │ │ ├── LocationsScenarioBase.cs │ │ ├── LocationsScenarios.cs │ │ └── appsettings.json ├── Marketing │ ├── Infrastructure │ │ └── AzureFunctions │ │ │ ├── MarketingDetailsHttpTrigger │ │ │ ├── function.json │ │ │ ├── project.json │ │ │ └── run.csx │ │ │ ├── host.json │ │ │ ├── local.settings.json │ │ │ └── marketing-functions.csproj │ ├── Marketing.API │ │ ├── Controllers │ │ │ ├── CampaignsController.cs │ │ │ ├── HomeController.cs │ │ │ ├── LocationsController.cs │ │ │ └── PicController.cs │ │ ├── Dockerfile │ │ ├── Dockerfile.develop │ │ ├── Dto │ │ │ ├── CampaignDTO.cs │ │ │ ├── UserLocationDTO.cs │ │ │ └── UserLocationRuleDTO.cs │ │ ├── Infrastructure │ │ │ ├── ActionResult │ │ │ │ └── InternalServerErrorObjectResult.cs │ │ │ ├── EntityConfigurations │ │ │ │ ├── CampaignEntityTypeConfiguration.cs │ │ │ │ ├── RuleEntityTypeConfiguration.cs │ │ │ │ └── UserLocationRuleEntityTypeConfiguration.cs │ │ │ ├── Exceptions │ │ │ │ └── MarketingDomainException.cs │ │ │ ├── Filters │ │ │ │ ├── AuthorizeCheckOperationFilter.cs │ │ │ │ └── HttpGlobalExceptionFilter.cs │ │ │ ├── MarketingContext.cs │ │ │ ├── MarketingContextSeed.cs │ │ │ ├── MarketingMigrations │ │ │ │ ├── 20170615163431_Init.Designer.cs │ │ │ │ ├── 20170615163431_Init.cs │ │ │ │ ├── 20170629102516_added-campaign-details.Designer.cs │ │ │ │ ├── 20170629102516_added-campaign-details.cs │ │ │ │ └── MarketingContextModelSnapshot.cs │ │ │ ├── MarketingReadDataContext.cs │ │ │ ├── Middlewares │ │ │ │ └── ByPassAuthMiddleware.cs │ │ │ ├── Repositories │ │ │ │ ├── IMarketingDataRepository.cs │ │ │ │ └── MarketingDataRepository.cs │ │ │ └── Services │ │ │ │ ├── IIdentityService.cs │ │ │ │ └── IdentityService.cs │ │ ├── IntegrationEvents │ │ │ ├── Events │ │ │ │ └── UserLocationUpdatedIntegrationEvent.cs │ │ │ └── Handlers │ │ │ │ └── UserLocationUpdatedIntegrationEventHandler.cs │ │ ├── Marketing.API.csproj │ │ ├── MarketingSettings.cs │ │ ├── Model │ │ │ ├── Campaign.cs │ │ │ ├── Location.cs │ │ │ ├── MarketingData.cs │ │ │ ├── Rule.cs │ │ │ ├── RuleType.cs │ │ │ └── UserLocationDetails.cs │ │ ├── Pics │ │ │ ├── 1.png │ │ │ └── 2.png │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Startup.cs │ │ ├── ViewModel │ │ │ └── PaginatedItemsViewModel.cs │ │ ├── appsettings.json │ │ ├── azds.yaml │ │ └── values.dev.yaml │ └── Marketing.FunctionalTests │ │ ├── AutoAuthorizeMiddleware.cs │ │ ├── CampaignScenarioBase.cs │ │ ├── CampaignScenarios.cs │ │ ├── Marketing.FunctionalTests.csproj │ │ ├── MarketingScenarioBase.cs │ │ ├── MarketingTestStartup.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── UserLocationRoleScenarioBase.cs │ │ ├── UserLocationRoleScenarios.cs │ │ └── appsettings.json ├── Ordering │ ├── Ordering.API │ │ ├── .dockerignore │ │ ├── Application │ │ │ ├── Behaviors │ │ │ │ ├── LoggingBehavior.cs │ │ │ │ ├── TransactionBehaviour.cs │ │ │ │ └── ValidatorBehavior.cs │ │ │ ├── Commands │ │ │ │ ├── CancelOrderCommand.cs │ │ │ │ ├── CancelOrderCommandHandler.cs │ │ │ │ ├── CreateOrderCommand.cs │ │ │ │ ├── CreateOrderCommandHandler.cs │ │ │ │ ├── CreateOrderDraftCommand.cs │ │ │ │ ├── CreateOrderDraftCommandHandler.cs │ │ │ │ ├── IdentifiedCommand.cs │ │ │ │ ├── IdentifiedCommandHandler.cs │ │ │ │ ├── SetAwaitingValidationOrderStatusCommand.cs │ │ │ │ ├── SetAwaitingValidationOrderStatusCommandHandler.cs │ │ │ │ ├── SetPaidOrderStatusCommand.cs │ │ │ │ ├── SetPaidOrderStatusCommandHandler.cs │ │ │ │ ├── SetStockConfirmedOrderStatusCommand.cs │ │ │ │ ├── SetStockConfirmedOrderStatusCommandHandler.cs │ │ │ │ ├── SetStockRejectedOrderStatusCommand.cs │ │ │ │ ├── SetStockRejectedOrderStatusCommandHandler.cs │ │ │ │ ├── ShipOrderCommand.cs │ │ │ │ └── ShipOrderCommandHandler.cs │ │ │ ├── DomainEventHandlers │ │ │ │ ├── BuyerAndPaymentMethodVerified │ │ │ │ │ └── UpdateOrderWhenBuyerAndPaymentMethodVerifiedDomainEventHandler.cs │ │ │ │ ├── OrderCancelled │ │ │ │ │ └── OrderCancelledDomainEventHandler.cs │ │ │ │ ├── OrderGracePeriodConfirmed │ │ │ │ │ └── OrderStatusChangedToAwaitingValidationDomainEventHandler.cs │ │ │ │ ├── OrderPaid │ │ │ │ │ └── OrderStatusChangedToPaidDomainEventHandler.cs │ │ │ │ ├── OrderShipped │ │ │ │ │ └── OrderShippedDomainEventHandler.cs │ │ │ │ ├── OrderStartedEvent │ │ │ │ │ ├── SendEmailToCustomerWhenOrderStartedDomainEventHandler.cs │ │ │ │ │ └── ValidateOrAddBuyerAggregateWhenOrderStartedDomainEventHandler.cs │ │ │ │ └── OrderStockConfirmed │ │ │ │ │ └── OrderStatusChangedToStockConfirmedDomainEventHandler.cs │ │ │ ├── IntegrationEvents │ │ │ │ ├── EventHandling │ │ │ │ │ ├── GracePeriodConfirmedIntegrationEventHandler.cs │ │ │ │ │ ├── OrderPaymentFailedIntegrationEventHandler.cs │ │ │ │ │ ├── OrderPaymentSucceededIntegrationEventHandler.cs │ │ │ │ │ ├── OrderStockConfirmedIntegrationEventHandler.cs │ │ │ │ │ ├── OrderStockRejectedIntegrationEventHandler.cs │ │ │ │ │ └── UserCheckoutAcceptedIntegrationEventHandler.cs │ │ │ │ ├── Events │ │ │ │ │ ├── GracePeriodConfirmedIntegrationEvent.cs │ │ │ │ │ ├── OrderPaymentFailedIntegrationEvent .cs │ │ │ │ │ ├── OrderPaymentSucceededIntegrationEvent.cs │ │ │ │ │ ├── OrderStartedIntegrationEvent.cs │ │ │ │ │ ├── OrderStatusChangedToAwaitingValidationIntegrationEvent.cs │ │ │ │ │ ├── OrderStatusChangedToCancelledIntegrationEvent.cs │ │ │ │ │ ├── OrderStatusChangedToPaidIntegrationEvent.cs │ │ │ │ │ ├── OrderStatusChangedToShippedIntegrationEvent.cs │ │ │ │ │ ├── OrderStatusChangedToStockConfirmedIntegrationEvent.cs │ │ │ │ │ ├── OrderStatusChangedTosubmittedIntegrationEvent.cs │ │ │ │ │ ├── OrderStockConfirmedIntegrationEvent.cs │ │ │ │ │ ├── OrderStockRejectedIntegrationEvent.cs │ │ │ │ │ └── UserCheckoutAcceptedIntegrationEvent.cs │ │ │ │ ├── IOrderingIntegrationEventService.cs │ │ │ │ └── OrderingIntegrationEventService.cs │ │ │ ├── Models │ │ │ │ ├── BasketItem.cs │ │ │ │ └── CustomerBasket.cs │ │ │ ├── Queries │ │ │ │ ├── IOrderQueries.cs │ │ │ │ ├── OrderQueries.cs │ │ │ │ └── OrderViewModel.cs │ │ │ └── Validations │ │ │ │ ├── CancelOrderCommandValidator.cs │ │ │ │ ├── CreateOrderCommandValidator.cs │ │ │ │ ├── IdentifiedCommandValidator.cs │ │ │ │ └── ShipOrderCommandValidator.cs │ │ ├── Controllers │ │ │ ├── HomeController.cs │ │ │ └── OrdersController.cs │ │ ├── Dockerfile │ │ ├── Dockerfile.develop │ │ ├── Extensions │ │ │ ├── BasketItemExtensions.cs │ │ │ └── LinqSelectExtensions.cs │ │ ├── Grpc │ │ │ └── OrderingService.cs │ │ ├── Infrastructure │ │ │ ├── ActionResults │ │ │ │ └── InternalServerErrorObjectResult.cs │ │ │ ├── Auth │ │ │ │ └── AuthorizationHeaderParameterOperationFilter.cs │ │ │ ├── AutofacModules │ │ │ │ ├── ApplicationModule.cs │ │ │ │ └── MediatorModule.cs │ │ │ ├── Factories │ │ │ │ └── OrderingDbContextFactory.cs │ │ │ ├── Filters │ │ │ │ ├── AuthorizeCheckOperationFilter.cs │ │ │ │ └── HttpGlobalExceptionFilter.cs │ │ │ ├── IntegrationEventMigrations │ │ │ │ ├── 20170330131634_IntegrationEventInitial.Designer.cs │ │ │ │ ├── 20170330131634_IntegrationEventInitial.cs │ │ │ │ ├── 20190507185219_AddTransactionId.Designer.cs │ │ │ │ ├── 20190507185219_AddTransactionId.cs │ │ │ │ ├── IntegrationEventLogContextDesignTimeFactory.cs │ │ │ │ └── IntegrationEventLogContextModelSnapshot.cs │ │ │ ├── Middlewares │ │ │ │ └── ByPassAuthMiddleware.cs │ │ │ ├── Migrations │ │ │ │ ├── 20170208181933_Initial.Designer.cs │ │ │ │ ├── 20170208181933_Initial.cs │ │ │ │ ├── 20170303085729_RequestsTable.Designer.cs │ │ │ │ ├── 20170303085729_RequestsTable.cs │ │ │ │ ├── 20170313100034_Domain_events.Designer.cs │ │ │ │ ├── 20170313100034_Domain_events.cs │ │ │ │ ├── 20170403082405_NoBuyerPropertyInOrder.Designer.cs │ │ │ │ ├── 20170403082405_NoBuyerPropertyInOrder.cs │ │ │ │ ├── 20170405110939_NoPaymentMethodPropertyInOrder.Designer.cs │ │ │ │ ├── 20170405110939_NoPaymentMethodPropertyInOrder.cs │ │ │ │ ├── 20170511112333_AddOrderDescription.Designer.cs │ │ │ │ ├── 20170511112333_AddOrderDescription.cs │ │ │ │ ├── 20170713111342_AdressAsValueObject.Designer.cs │ │ │ │ ├── 20170713111342_AdressAsValueObject.cs │ │ │ │ ├── 20180412143935_NamePropertyInBuyer.Designer.cs │ │ │ │ ├── 20180412143935_NamePropertyInBuyer.cs │ │ │ │ ├── 20190808132242_Change_Relation_Of_Orders.Designer.cs │ │ │ │ ├── 20190808132242_Change_Relation_Of_Orders.cs │ │ │ │ └── OrderingContextModelSnapshot.cs │ │ │ ├── OrderingContextSeed.cs │ │ │ └── Services │ │ │ │ ├── IIdentityService.cs │ │ │ │ └── IdentityService.cs │ │ ├── Ordering.API.csproj │ │ ├── OrderingSettings.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Proto │ │ │ └── ordering.proto │ │ ├── README.md │ │ ├── Setup │ │ │ ├── CardTypes.csv │ │ │ └── OrderStatus.csv │ │ ├── Startup.cs │ │ ├── appsettings.json │ │ ├── azds.yaml │ │ └── web.config │ ├── Ordering.BackgroundTasks │ │ ├── BackgroundTaskSettings.cs │ │ ├── Dockerfile │ │ ├── Events │ │ │ └── GracePeriodConfirmedIntegrationEvent.cs │ │ ├── Extensions │ │ │ └── CustomExtensionMethods.cs │ │ ├── Ordering.BackgroundTasks.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Startup.cs │ │ ├── Tasks │ │ │ └── GracePeriodManagerTask.cs │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ ├── Ordering.Domain │ │ ├── AggregatesModel │ │ │ ├── BuyerAggregate │ │ │ │ ├── Buyer.cs │ │ │ │ ├── CardType.cs │ │ │ │ ├── IBuyerRepository.cs │ │ │ │ └── PaymentMethod.cs │ │ │ └── OrderAggregate │ │ │ │ ├── Address.cs │ │ │ │ ├── IOrderRepository.cs │ │ │ │ ├── Order.cs │ │ │ │ ├── OrderItem.cs │ │ │ │ └── OrderStatus.cs │ │ ├── Events │ │ │ ├── BuyerPaymentMethodVerifiedDomainEvent.cs │ │ │ ├── OrderCancelledDomainEvent.cs │ │ │ ├── OrderShippedDomainEvent.cs │ │ │ ├── OrderStartedDomainEvent.cs │ │ │ ├── OrderStatusChangedToAwaitingValidationDomainEvent.cs │ │ │ ├── OrderStatusChangedToPaidDomainEvent.cs │ │ │ └── OrderStatusChangedToStockConfirmedDomainEvent.cs │ │ ├── Exceptions │ │ │ └── OrderingDomainException.cs │ │ ├── Ordering.Domain.csproj │ │ └── SeedWork │ │ │ ├── Entity.cs │ │ │ ├── Enumeration.cs │ │ │ ├── IAggregateRoot.cs │ │ │ ├── IRepository.cs │ │ │ ├── IUnitOfWork.cs │ │ │ └── ValueObject.cs │ ├── Ordering.FunctionalTests │ │ ├── AutoAuthorizeMiddleware.cs │ │ ├── HttpClientExtensions.cs │ │ ├── Ordering.FunctionalTests.csproj │ │ ├── OrderingScenarioBase.cs │ │ ├── OrderingScenarios.cs │ │ ├── OrderingTestStartup.cs │ │ └── appsettings.json │ ├── Ordering.Infrastructure │ │ ├── EntityConfigurations │ │ │ ├── BuyerEntityTypeConfiguration.cs │ │ │ ├── CardTypeEntityTypeConfiguration.cs │ │ │ ├── ClientRequestEntityTypeConfiguration.cs │ │ │ ├── OrderEntityTypeConfiguration.cs │ │ │ ├── OrderItemEntityTypeConfiguration.cs │ │ │ ├── OrderStatusEntityTypeConfiguration.cs │ │ │ └── PaymentMethodEntityTypeConfiguration.cs │ │ ├── Idempotency │ │ │ ├── ClientRequest.cs │ │ │ ├── IRequestManager.cs │ │ │ └── RequestManager.cs │ │ ├── MediatorExtension.cs │ │ ├── Ordering.Infrastructure.csproj │ │ ├── OrderingContext.cs │ │ └── Repositories │ │ │ ├── BuyerRepository.cs │ │ │ └── OrderRepository.cs │ ├── Ordering.SignalrHub │ │ ├── AutofacModules │ │ │ └── ApplicationModule.cs │ │ ├── Dockerfile │ │ ├── Dockerfile.develop │ │ ├── IntegrationEvents │ │ │ ├── EventHandling │ │ │ │ ├── OrderStatusChangedToAwaitingValidationIntegrationEventHandler.cs │ │ │ │ ├── OrderStatusChangedToCancelledIntegrationEventHandler.cs │ │ │ │ ├── OrderStatusChangedToPaidIntegrationEventHandler.cs │ │ │ │ ├── OrderStatusChangedToShippedIntegrationEventHandler.cs │ │ │ │ ├── OrderStatusChangedToStockConfirmedIntegrationEventHandler.cs │ │ │ │ └── OrderStatusChangedToSubmittedIntegrationEventHandler.cs │ │ │ └── Events │ │ │ │ ├── OrderStatusChangedToAwaitingValidationIntegrationEvent.cs │ │ │ │ ├── OrderStatusChangedToCancelledIntegrationEvent.cs │ │ │ │ ├── OrderStatusChangedToPaidIntegrationEvent.cs │ │ │ │ ├── OrderStatusChangedToShippedIntegrationEvent.cs │ │ │ │ ├── OrderStatusChangedToStockConfirmedIntegrationEvent.cs │ │ │ │ └── OrderStatusChangedToSubmittedIntegrationEvent.cs │ │ ├── NotificationHub.cs │ │ ├── Ordering.SignalrHub.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Startup.cs │ │ ├── appsettings.json │ │ └── azds.yaml │ └── Ordering.UnitTests │ │ ├── Application │ │ ├── IdentifiedCommandHandlerTest.cs │ │ ├── NewOrderCommandHandlerTest.cs │ │ └── OrdersWebApiTest.cs │ │ ├── Builders.cs │ │ ├── Domain │ │ ├── BuyerAggregateTest.cs │ │ └── OrderAggregateTest.cs │ │ └── Ordering.UnitTests.csproj ├── Payment │ └── Payment.API │ │ ├── Dockerfile │ │ ├── Dockerfile.develop │ │ ├── IntegrationEvents │ │ ├── EventHandling │ │ │ └── OrderStatusChangedToStockConfirmedIntegrationEventHandler.cs │ │ └── Events │ │ │ ├── OrderPaymentFailedIntegrationEvent.cs │ │ │ ├── OrderPaymentSucceededIntegrationEvent.cs │ │ │ └── OrderStatusChangedToStockConfirmedIntegrationEvent.cs │ │ ├── Payment.API.csproj │ │ ├── PaymentSettings.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ └── azds.yaml └── Webhooks │ └── Webhooks.API │ ├── Controllers │ ├── HomeController.cs │ ├── WebhookSubscriptionRequest.cs │ └── WebhooksController.cs │ ├── Dockerfile │ ├── Dockerfile.develop │ ├── Exceptions │ └── WebhooksDomainException.cs │ ├── Infrastructure │ ├── ActionResult │ │ └── InternalServerErrorObjectResult.cs │ ├── AuthorizeCheckOperationFilter.cs │ ├── HttpGlobalExceptionFilter.cs │ └── WebhooksContext.cs │ ├── IntegrationEvents │ ├── OrderStatusChangedToPaidIntegrationEvent.cs │ ├── OrderStatusChangedToPaidIntegrationEventHandler.cs │ ├── OrderStatusChangedToShippedIntegrationEvent.cs │ ├── OrderStatusChangedToShippedIntegrationEventHandler.cs │ ├── ProductPriceChangedIntegrationEvent.cs │ └── ProductPriceChangedIntegrationEventHandler.cs │ ├── Migrations │ ├── 20190118091148_Initial.Designer.cs │ ├── 20190118091148_Initial.cs │ └── WebhooksContextModelSnapshot.cs │ ├── Model │ ├── WebhookData.cs │ ├── WebhookSubscription.cs │ └── WebhookType.cs │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Services │ ├── GrantUrlTesterService.cs │ ├── IGrantUrlTesterService.cs │ ├── IIdentityService.cs │ ├── IWebhooksRetriever.cs │ ├── IWebhooksSender.cs │ ├── IdentityService.cs │ ├── WebhooksRetriever.cs │ └── WebhooksSender.cs │ ├── Startup.cs │ ├── Webhooks.API.csproj │ ├── appsettings.Development.json │ ├── appsettings.json │ └── azds.yaml ├── Tests └── Services │ └── Application.FunctionalTests │ ├── Application.FunctionalTests.csproj │ ├── Extensions │ └── HttpClientExtensions.cs │ ├── Middleware │ └── AutoAuthorizeMiddleware.cs │ ├── Services │ ├── Basket │ │ ├── BasketScenariosBase.cs │ │ ├── BasketTestsStartup.cs │ │ └── appsettings.json │ ├── Catalog │ │ ├── CatalogScenariosBase.cs │ │ └── appsettings.json │ ├── IntegrationEventsScenarios.cs │ ├── Location │ │ ├── LocationsScenariosBase.cs │ │ ├── LocationsTestsStartup.cs │ │ └── appsettings.json │ ├── Marketing │ │ ├── CampaignScenariosBase.cs │ │ ├── MarketingScenarios.cs │ │ ├── MarketingScenariosBase.cs │ │ ├── MarketingTestsStartup.cs │ │ ├── UserLocationRoleScenariosBase.cs │ │ └── appsettings.json │ └── Ordering │ │ ├── OrderingScenarios.cs │ │ ├── OrderingScenariosBase.cs │ │ ├── OrderingTestsStartup.cs │ │ └── appsettings.json │ └── Setup │ ├── CatalogBrands.csv │ ├── CatalogItems.csv │ ├── CatalogItems.zip │ └── CatalogTypes.csv ├── Web ├── WebMVC │ ├── .dockerignore │ ├── AppSettings.cs │ ├── Controllers │ │ ├── AccountController.cs │ │ ├── CampaignsController.cs │ │ ├── CartController.cs │ │ ├── CatalogController.cs │ │ ├── ErrorController.cs │ │ ├── OrderController.cs │ │ ├── OrderManagementController.cs │ │ └── TestController.cs │ ├── Dockerfile │ ├── Dockerfile.develop │ ├── Extensions │ │ ├── HttpClientExtensions.cs │ │ └── SessionExtensions.cs │ ├── Infrastructure │ │ ├── API.cs │ │ ├── HttpClientAuthorizationDelegatingHandler.cs │ │ ├── HttpClientRequestIdDelegatingHandler.cs │ │ ├── Middlewares │ │ │ └── ByPassAuthMiddleware.cs │ │ └── WebContextSeed.cs │ ├── Program.cs │ ├── Properties │ │ ├── PublishProfiles │ │ │ └── ToFile-publish.ps1 │ │ └── launchSettings.json │ ├── README.md │ ├── Services │ │ ├── BasketService.cs │ │ ├── CampaignService.cs │ │ ├── CatalogService.cs │ │ ├── IBasketService.cs │ │ ├── ICampaignService.cs │ │ ├── ICatalogService.cs │ │ ├── IIdentityParser.cs │ │ ├── ILocationService.cs │ │ ├── IOrderingService.cs │ │ ├── IdentityParser.cs │ │ ├── LocationService.cs │ │ ├── ModelDTOs │ │ │ ├── BasketDTO.cs │ │ │ ├── LocationDTO.cs │ │ │ ├── OrderDTO.cs │ │ │ └── OrderProcessAction.cs │ │ └── OrderingService.cs │ ├── Setup │ │ ├── images.zip │ │ └── override.css │ ├── Startup.cs │ ├── ViewComponents │ │ ├── Cart.cs │ │ └── CartList.cs │ ├── ViewModels │ │ ├── Annotations │ │ │ ├── CardExpiration.cs │ │ │ ├── LatitudeCoordinate.cs │ │ │ └── LongitudeCoordinate.cs │ │ ├── ApplicationUser.cs │ │ ├── Basket.cs │ │ ├── BasketItem.cs │ │ ├── Campaign.cs │ │ ├── CampaignItem.cs │ │ ├── CampaignViewModel │ │ │ └── CampaignViewModel.cs │ │ ├── CartViewModels │ │ │ └── IndexViewModel.cs │ │ ├── Catalog.cs │ │ ├── CatalogItem.cs │ │ ├── CatalogViewModels │ │ │ └── IndexViewModel.cs │ │ ├── Header.cs │ │ ├── Order.cs │ │ ├── OrderItem.cs │ │ └── Pagination │ │ │ └── PaginationInfo.cs │ ├── Views │ │ ├── Campaigns │ │ │ ├── Details.cshtml │ │ │ ├── Index.cshtml │ │ │ ├── _campaign.cshtml │ │ │ └── _pagination.cshtml │ │ ├── Cart │ │ │ └── Index.cshtml │ │ ├── Catalog │ │ │ ├── Index.cshtml │ │ │ ├── _pagination.cshtml │ │ │ └── _product.cshtml │ │ ├── Order │ │ │ ├── Create.cshtml │ │ │ ├── Detail.cshtml │ │ │ ├── Index.cshtml │ │ │ └── _OrderItems.cshtml │ │ ├── OrderManagement │ │ │ └── Index.cshtml │ │ ├── Shared │ │ │ ├── Components │ │ │ │ ├── Cart │ │ │ │ │ └── Default.cshtml │ │ │ │ └── CartList │ │ │ │ │ └── Default.cshtml │ │ │ ├── Error.cshtml │ │ │ ├── _Header.cshtml │ │ │ ├── _Layout.cshtml │ │ │ ├── _LoginPartial.cshtml │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ ├── WebMVC.csproj │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── azds.yaml │ ├── bundleconfig.json │ ├── compilerconfig.json │ ├── compilerconfig.json.defaults │ ├── libman.json │ ├── values.dev.yaml │ ├── web.config │ └── wwwroot │ │ ├── _references.js │ │ ├── css │ │ ├── _variables.scss │ │ ├── app.component.css │ │ ├── app.component.min.css │ │ ├── app.component.scss │ │ ├── app.css │ │ ├── basket │ │ │ ├── basket-status │ │ │ │ ├── basket-status.component.css │ │ │ │ ├── basket-status.component.min.css │ │ │ │ └── basket-status.component.scss │ │ │ ├── basket.component.css │ │ │ ├── basket.component.min.css │ │ │ └── basket.component.scss │ │ ├── campaigns │ │ │ └── campaigns.component.css │ │ ├── catalog │ │ │ ├── catalog.component.css │ │ │ ├── catalog.component.min.css │ │ │ └── catalog.component.scss │ │ ├── orders │ │ │ ├── orders-detail │ │ │ │ ├── orders-detail.component.css │ │ │ │ ├── orders-detail.component.min.css │ │ │ │ └── orders-detail.component.scss │ │ │ ├── orders-new │ │ │ │ ├── orders-new.component.css │ │ │ │ ├── orders-new.component.min.css │ │ │ │ └── orders-new.component.scss │ │ │ ├── orders.component.css │ │ │ ├── orders.component.min.css │ │ │ └── orders.component.scss │ │ ├── override.css │ │ ├── shared │ │ │ └── components │ │ │ │ ├── header │ │ │ │ ├── header.css │ │ │ │ ├── header.min.css │ │ │ │ └── header.scss │ │ │ │ ├── identity │ │ │ │ ├── identity.css │ │ │ │ ├── identity.min.css │ │ │ │ └── identity.scss │ │ │ │ └── pager │ │ │ │ ├── pager.css │ │ │ │ ├── pager.min.css │ │ │ │ └── pager.scss │ │ └── toastr.css │ │ ├── favicon.ico │ │ ├── fonts │ │ ├── Montserrat-Bold.eot │ │ ├── Montserrat-Bold.svg │ │ ├── Montserrat-Bold.ttf │ │ ├── Montserrat-Bold.woff │ │ ├── Montserrat-Bold.woff2 │ │ ├── Montserrat-Regular.eot │ │ ├── Montserrat-Regular.svg │ │ ├── Montserrat-Regular.ttf │ │ ├── Montserrat-Regular.woff │ │ └── Montserrat-Regular.woff2 │ │ └── images │ │ ├── arrow-down.png │ │ ├── arrow-right.svg │ │ ├── brand.png │ │ ├── brand_dark.png │ │ ├── cart-inoperative.png │ │ ├── cart.png │ │ ├── logout.png │ │ ├── main_banner.png │ │ ├── main_banner_text.png │ │ ├── main_banner_text.svg │ │ ├── main_footer_text.png │ │ ├── my_orders.png │ │ └── refresh.svg ├── WebSPA │ ├── .gitignore │ ├── .npmignore │ ├── .sass-lint.yml │ ├── AppSettings.cs │ ├── Client │ │ ├── assets │ │ │ ├── .gitkeep │ │ │ └── images │ │ │ │ ├── arrow-down.png │ │ │ │ ├── arrow-right.svg │ │ │ │ ├── brand.png │ │ │ │ ├── brand_dark.png │ │ │ │ ├── cart.png │ │ │ │ ├── logout.png │ │ │ │ ├── main_banner.png │ │ │ │ ├── main_banner_text.png │ │ │ │ ├── main_footer_text.png │ │ │ │ └── my_orders.png │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.ico │ │ ├── fonts │ │ │ ├── Montserrat-Bold.eot │ │ │ ├── Montserrat-Bold.svg │ │ │ ├── Montserrat-Bold.ttf │ │ │ ├── Montserrat-Bold.woff │ │ │ ├── Montserrat-Bold.woff2 │ │ │ ├── Montserrat-Regular.eot │ │ │ ├── Montserrat-Regular.svg │ │ │ ├── Montserrat-Regular.ttf │ │ │ ├── Montserrat-Regular.woff │ │ │ └── Montserrat-Regular.woff2 │ │ ├── globals.scss │ │ ├── guid.ts │ │ ├── index.html │ │ ├── main.ts │ │ ├── modules │ │ │ ├── _variables.scss │ │ │ ├── app.component.html │ │ │ ├── app.component.scss │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── app.routes.ts │ │ │ ├── app.service.ts │ │ │ ├── basket │ │ │ │ ├── basket-status │ │ │ │ │ ├── basket-status.component.html │ │ │ │ │ ├── basket-status.component.scss │ │ │ │ │ └── basket-status.component.ts │ │ │ │ ├── basket.component.html │ │ │ │ ├── basket.component.scss │ │ │ │ ├── basket.component.ts │ │ │ │ ├── basket.module.ts │ │ │ │ └── basket.service.ts │ │ │ ├── campaigns │ │ │ │ ├── campaigns-detail │ │ │ │ │ ├── campaigns-detail.component.html │ │ │ │ │ ├── campaigns-detail.component.scss │ │ │ │ │ └── campaigns-detail.component.ts │ │ │ │ ├── campaigns.component.html │ │ │ │ ├── campaigns.component.scss │ │ │ │ ├── campaigns.component.ts │ │ │ │ ├── campaigns.module.ts │ │ │ │ └── campaigns.service.ts │ │ │ ├── catalog │ │ │ │ ├── catalog.component.html │ │ │ │ ├── catalog.component.scss │ │ │ │ ├── catalog.component.ts │ │ │ │ ├── catalog.module.ts │ │ │ │ └── catalog.service.ts │ │ │ ├── orders │ │ │ │ ├── orders-detail │ │ │ │ │ ├── orders-detail.component.html │ │ │ │ │ ├── orders-detail.component.scss │ │ │ │ │ └── orders-detail.component.ts │ │ │ │ ├── orders-new │ │ │ │ │ ├── orders-new.component.html │ │ │ │ │ ├── orders-new.component.scss │ │ │ │ │ └── orders-new.component.ts │ │ │ │ ├── orders.component.html │ │ │ │ ├── orders.component.scss │ │ │ │ ├── orders.component.ts │ │ │ │ ├── orders.module.ts │ │ │ │ └── orders.service.ts │ │ │ └── shared │ │ │ │ ├── components │ │ │ │ ├── header │ │ │ │ │ ├── header.html │ │ │ │ │ ├── header.scss │ │ │ │ │ └── header.ts │ │ │ │ ├── identity │ │ │ │ │ ├── identity.html │ │ │ │ │ ├── identity.scss │ │ │ │ │ └── identity.ts │ │ │ │ ├── page-not-found │ │ │ │ │ ├── page-not-found.component.html │ │ │ │ │ ├── page-not-found.component.scss │ │ │ │ │ ├── page-not-found.component.spec.ts │ │ │ │ │ └── page-not-found.component.ts │ │ │ │ └── pager │ │ │ │ │ ├── pager.html │ │ │ │ │ ├── pager.scss │ │ │ │ │ └── pager.ts │ │ │ │ ├── models │ │ │ │ ├── basket.model.ts │ │ │ │ ├── basketCheckout.model.ts │ │ │ │ ├── basketItem.model.ts │ │ │ │ ├── campaign.model.ts │ │ │ │ ├── campaignItem.model.ts │ │ │ │ ├── catalog.model.ts │ │ │ │ ├── catalogBrand.model.ts │ │ │ │ ├── catalogItem.model.ts │ │ │ │ ├── catalogType.model.ts │ │ │ │ ├── configuration.model.ts │ │ │ │ ├── identity.model.ts │ │ │ │ ├── order-detail.model.ts │ │ │ │ ├── order.model.ts │ │ │ │ ├── orderItem.model.ts │ │ │ │ └── pager.model.ts │ │ │ │ ├── pipes │ │ │ │ ├── uppercase.pipe.spec.ts │ │ │ │ └── uppercase.pipe.ts │ │ │ │ ├── services │ │ │ │ ├── basket.wrapper.service.ts │ │ │ │ ├── configuration.service.ts │ │ │ │ ├── data.service.ts │ │ │ │ ├── notification.service.ts │ │ │ │ ├── security.service.ts │ │ │ │ ├── signalr.service.ts │ │ │ │ └── storage.service.ts │ │ │ │ └── shared.module.ts │ │ ├── polyfills.ts │ │ ├── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.spec.json │ │ └── typings.d.ts │ ├── Dockerfile │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Server │ │ ├── Controllers │ │ │ └── HomeController.cs │ │ └── Infrastructure │ │ │ └── WebContextSeed.cs │ ├── Setup │ │ └── images.zip │ ├── Startup.cs │ ├── WebSPA.csproj │ ├── angular.json │ ├── appsettings.json │ ├── package-lock.json │ ├── package.json │ ├── tsconfig.json │ ├── tslint.json │ ├── typedoc.json │ └── web.config ├── WebStatus │ ├── Controllers │ │ └── HomeController.cs │ ├── Dockerfile │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── Views │ │ ├── Home │ │ │ └── Config.cshtml │ │ └── Shared │ │ │ └── Error.cshtml │ ├── WebStatus.csproj │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── bundleconfig.json │ ├── libman.json │ └── wwwroot │ │ ├── css │ │ ├── site.css │ │ └── site.min.css │ │ ├── favicon.ico │ │ └── lib │ │ └── bootstrap │ │ └── dist │ │ ├── css │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ └── js │ │ ├── bootstrap.js │ │ └── bootstrap.min.js └── WebhookClient │ ├── .dockerignore │ ├── .gitignore │ ├── Controllers │ ├── AccountController.cs │ └── WebhooksReceivedController.cs │ ├── Dockerfile │ ├── HeaderNames.cs │ ├── HttpClientAuthorizationDelegatingHandler.cs │ ├── Models │ ├── WebHookReceived.cs │ ├── WebhookData.cs │ ├── WebhookResponse.cs │ └── WebhookSubscriptionRequest.cs │ ├── Pages │ ├── Error.cshtml │ ├── Error.cshtml.cs │ ├── Index.cshtml │ ├── Index.cshtml.cs │ ├── Privacy.cshtml │ ├── Privacy.cshtml.cs │ ├── RegisterWebhook.cshtml │ ├── RegisterWebhook.cshtml.cs │ ├── Shared │ │ ├── _Layout.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── WebhooksList.cshtml │ ├── WebhooksList.cshtml.cs │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Services │ ├── IHooksRepository.cs │ ├── IWebhooksClient.cs │ ├── InMemoryHooksRepository.cs │ └── WebhooksClient.cs │ ├── Settings.cs │ ├── Startup.cs │ ├── WebhookClient.csproj │ ├── appsettings.Development.json │ ├── appsettings.json │ └── wwwroot │ ├── css │ └── site.css │ ├── favicon.ico │ ├── images │ ├── brand.png │ └── main_banner.png │ ├── js │ └── site.js │ └── lib │ ├── bootstrap │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ └── bootstrap.min.js.map │ ├── jquery-validation-unobtrusive │ ├── LICENSE.txt │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map ├── docker-compose-tests.override.yml ├── docker-compose-tests.yml ├── docker-compose-windows.prod.yml ├── docker-compose.dcproj ├── docker-compose.elk.yml ├── docker-compose.override.windows.yml ├── docker-compose.override.yml ├── docker-compose.prod.yml ├── docker-compose.windows.yml ├── docker-compose.yml ├── eShopOnContainers-ServicesAndWebApps.sln ├── package-lock.json ├── prepare-devspaces.ps1 └── run-test-infrastructure.ps1 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/README.md -------------------------------------------------------------------------------- /branch-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/branch-guide.md -------------------------------------------------------------------------------- /deploy/azure/az/cosmos/deploycosmos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/azure/az/cosmos/deploycosmos.json -------------------------------------------------------------------------------- /deploy/azure/az/cosmos/deploycosmos.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/azure/az/cosmos/deploycosmos.parameters.json -------------------------------------------------------------------------------- /deploy/azure/az/cosmos/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/azure/az/cosmos/readme.md -------------------------------------------------------------------------------- /deploy/azure/az/create-resources.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/azure/az/create-resources.cmd -------------------------------------------------------------------------------- /deploy/azure/az/createresources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/azure/az/createresources.sh -------------------------------------------------------------------------------- /deploy/azure/az/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/azure/az/readme.md -------------------------------------------------------------------------------- /deploy/azure/az/redis/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/azure/az/redis/readme.md -------------------------------------------------------------------------------- /deploy/azure/az/redis/redisdeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/azure/az/redis/redisdeploy.json -------------------------------------------------------------------------------- /deploy/azure/az/redis/redisdeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/azure/az/redis/redisdeploy.parameters.json -------------------------------------------------------------------------------- /deploy/azure/az/servicebus/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/azure/az/servicebus/readme.md -------------------------------------------------------------------------------- /deploy/azure/az/servicebus/sbusdeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/azure/az/servicebus/sbusdeploy.json -------------------------------------------------------------------------------- /deploy/azure/az/servicebus/sbusdeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/azure/az/servicebus/sbusdeploy.parameters.json -------------------------------------------------------------------------------- /deploy/azure/az/sql/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/azure/az/sql/readme.md -------------------------------------------------------------------------------- /deploy/azure/az/sql/sqldeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/azure/az/sql/sqldeploy.json -------------------------------------------------------------------------------- /deploy/azure/az/sql/sqldeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/azure/az/sql/sqldeploy.parameters.json -------------------------------------------------------------------------------- /deploy/azure/az/storage/catalog/deploystorage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/azure/az/storage/catalog/deploystorage.json -------------------------------------------------------------------------------- /deploy/azure/az/storage/catalog/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/azure/az/storage/catalog/readme.md -------------------------------------------------------------------------------- /deploy/azure/az/storage/marketing/deploystorage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/azure/az/storage/marketing/deploystorage.json -------------------------------------------------------------------------------- /deploy/azure/az/storage/marketing/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/azure/az/storage/marketing/readme.md -------------------------------------------------------------------------------- /deploy/azure/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/azure/readme.md -------------------------------------------------------------------------------- /deploy/elk/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/elk/Readme.md -------------------------------------------------------------------------------- /deploy/elk/elasticsearch/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/elk/elasticsearch/Dockerfile -------------------------------------------------------------------------------- /deploy/elk/elasticsearch/config/elasticsearch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/elk/elasticsearch/config/elasticsearch.yml -------------------------------------------------------------------------------- /deploy/elk/img/elk/azure-nsg-inboundportsConfig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/elk/img/elk/azure-nsg-inboundportsConfig.png -------------------------------------------------------------------------------- /deploy/elk/img/elk/bitnami_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/elk/img/elk/bitnami_splash.png -------------------------------------------------------------------------------- /deploy/elk/img/elk/create-vm-elk-azure-last-step.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/elk/img/elk/create-vm-elk-azure-last-step.png -------------------------------------------------------------------------------- /deploy/elk/img/elk/create-vm-elk-azure-summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/elk/img/elk/create-vm-elk-azure-summary.png -------------------------------------------------------------------------------- /deploy/elk/img/elk/create-vm-elk-azure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/elk/img/elk/create-vm-elk-azure.png -------------------------------------------------------------------------------- /deploy/elk/img/elk/discover-kibana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/elk/img/elk/discover-kibana.png -------------------------------------------------------------------------------- /deploy/elk/img/elk/kibana_eshops_index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/elk/img/elk/kibana_eshops_index.png -------------------------------------------------------------------------------- /deploy/elk/img/elk/kibana_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/elk/img/elk/kibana_result.png -------------------------------------------------------------------------------- /deploy/elk/img/elk/kibana_startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/elk/img/elk/kibana_startup.png -------------------------------------------------------------------------------- /deploy/elk/img/elk/kibana_working.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/elk/img/elk/kibana_working.png -------------------------------------------------------------------------------- /deploy/elk/kibana/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/elk/kibana/Dockerfile -------------------------------------------------------------------------------- /deploy/elk/kibana/config/kibana.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/elk/kibana/config/kibana.yml -------------------------------------------------------------------------------- /deploy/elk/logstash/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/elk/logstash/Dockerfile -------------------------------------------------------------------------------- /deploy/elk/logstash/config/logstash.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/elk/logstash/config/logstash.yml -------------------------------------------------------------------------------- /deploy/elk/logstash/pipeline/logstash.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/elk/logstash/pipeline/logstash.conf -------------------------------------------------------------------------------- /deploy/k8s/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/README.md -------------------------------------------------------------------------------- /deploy/k8s/create-aks.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/create-aks.ps1 -------------------------------------------------------------------------------- /deploy/k8s/dashboard-adminuser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/dashboard-adminuser.yaml -------------------------------------------------------------------------------- /deploy/k8s/enable-tls.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/enable-tls.ps1 -------------------------------------------------------------------------------- /deploy/k8s/helm-rbac.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm-rbac.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/aks-httpaddon-cfg.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/aks-httpaddon-cfg.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/apigwmm/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/apigwmm/.helmignore -------------------------------------------------------------------------------- /deploy/k8s/helm/apigwmm/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/apigwmm/Chart.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/apigwmm/envoy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/apigwmm/envoy.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/apigwmm/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/apigwmm/templates/NOTES.txt -------------------------------------------------------------------------------- /deploy/k8s/helm/apigwmm/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/apigwmm/templates/_helpers.tpl -------------------------------------------------------------------------------- /deploy/k8s/helm/apigwmm/templates/_names.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/apigwmm/templates/_names.tpl -------------------------------------------------------------------------------- /deploy/k8s/helm/apigwmm/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/apigwmm/templates/deployment.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/apigwmm/templates/envoy-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/apigwmm/templates/envoy-cm.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/apigwmm/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/apigwmm/templates/ingress.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/apigwmm/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/apigwmm/templates/service.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/apigwmm/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/apigwmm/values.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/apigwms/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/apigwms/.helmignore -------------------------------------------------------------------------------- /deploy/k8s/helm/apigwms/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/apigwms/Chart.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/apigwms/envoy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/apigwms/envoy.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/apigwms/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/apigwms/templates/NOTES.txt -------------------------------------------------------------------------------- /deploy/k8s/helm/apigwms/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/apigwms/templates/_helpers.tpl -------------------------------------------------------------------------------- /deploy/k8s/helm/apigwms/templates/_names.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/apigwms/templates/_names.tpl -------------------------------------------------------------------------------- /deploy/k8s/helm/apigwms/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/apigwms/templates/deployment.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/apigwms/templates/envoy-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/apigwms/templates/envoy-cm.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/apigwms/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/apigwms/templates/ingress.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/apigwms/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/apigwms/templates/service.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/apigwms/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/apigwms/values.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/apigwwm/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/apigwwm/.helmignore -------------------------------------------------------------------------------- /deploy/k8s/helm/apigwwm/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/apigwwm/Chart.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/apigwwm/envoy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/apigwwm/envoy.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/apigwwm/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/apigwwm/templates/NOTES.txt -------------------------------------------------------------------------------- /deploy/k8s/helm/apigwwm/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/apigwwm/templates/_helpers.tpl -------------------------------------------------------------------------------- /deploy/k8s/helm/apigwwm/templates/_names.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/apigwwm/templates/_names.tpl -------------------------------------------------------------------------------- /deploy/k8s/helm/apigwwm/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/apigwwm/templates/deployment.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/apigwwm/templates/envoy-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/apigwwm/templates/envoy-cm.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/apigwwm/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/apigwwm/templates/ingress.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/apigwwm/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/apigwwm/templates/service.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/apigwwm/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/apigwwm/values.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/apigwws/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/apigwws/.helmignore -------------------------------------------------------------------------------- /deploy/k8s/helm/apigwws/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/apigwws/Chart.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/apigwws/envoy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/apigwws/envoy.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/apigwws/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/apigwws/templates/NOTES.txt -------------------------------------------------------------------------------- /deploy/k8s/helm/apigwws/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/apigwws/templates/_helpers.tpl -------------------------------------------------------------------------------- /deploy/k8s/helm/apigwws/templates/_names.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/apigwws/templates/_names.tpl -------------------------------------------------------------------------------- /deploy/k8s/helm/apigwws/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/apigwws/templates/deployment.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/apigwws/templates/envoy-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/apigwws/templates/envoy-cm.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/apigwws/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/apigwws/templates/ingress.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/apigwws/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/apigwws/templates/service.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/apigwws/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/apigwws/values.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/app.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/basket-api/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/basket-api/.helmignore -------------------------------------------------------------------------------- /deploy/k8s/helm/basket-api/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/basket-api/Chart.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/basket-api/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/basket-api/templates/NOTES.txt -------------------------------------------------------------------------------- /deploy/k8s/helm/basket-api/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/basket-api/templates/_helpers.tpl -------------------------------------------------------------------------------- /deploy/k8s/helm/basket-api/templates/_names.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/basket-api/templates/_names.tpl -------------------------------------------------------------------------------- /deploy/k8s/helm/basket-api/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/basket-api/templates/configmap.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/basket-api/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/basket-api/templates/deployment.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/basket-api/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/basket-api/templates/service.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/basket-api/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/basket-api/values.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/basket-data/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/basket-data/.helmignore -------------------------------------------------------------------------------- /deploy/k8s/helm/basket-data/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/basket-data/Chart.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/basket-data/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/basket-data/templates/NOTES.txt -------------------------------------------------------------------------------- /deploy/k8s/helm/basket-data/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/basket-data/templates/_helpers.tpl -------------------------------------------------------------------------------- /deploy/k8s/helm/basket-data/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/basket-data/templates/deployment.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/basket-data/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/basket-data/templates/service.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/basket-data/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/basket-data/values.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/catalog-api/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/catalog-api/.helmignore -------------------------------------------------------------------------------- /deploy/k8s/helm/catalog-api/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/catalog-api/Chart.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/catalog-api/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/catalog-api/templates/NOTES.txt -------------------------------------------------------------------------------- /deploy/k8s/helm/catalog-api/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/catalog-api/templates/_helpers.tpl -------------------------------------------------------------------------------- /deploy/k8s/helm/catalog-api/templates/_names.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/catalog-api/templates/_names.tpl -------------------------------------------------------------------------------- /deploy/k8s/helm/catalog-api/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/catalog-api/templates/configmap.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/catalog-api/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/catalog-api/templates/deployment.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/catalog-api/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/catalog-api/templates/service.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/catalog-api/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/catalog-api/values.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/deploy-all.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/deploy-all.ps1 -------------------------------------------------------------------------------- /deploy/k8s/helm/deploy-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/deploy-all.sh -------------------------------------------------------------------------------- /deploy/k8s/helm/eshop-common/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/eshop-common/.helmignore -------------------------------------------------------------------------------- /deploy/k8s/helm/eshop-common/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/eshop-common/Chart.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/eshop-common/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/eshop-common/templates/NOTES.txt -------------------------------------------------------------------------------- /deploy/k8s/helm/eshop-common/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/eshop-common/templates/_helpers.tpl -------------------------------------------------------------------------------- /deploy/k8s/helm/eshop-common/templates/_names.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/eshop-common/templates/_names.tpl -------------------------------------------------------------------------------- /deploy/k8s/helm/eshop-common/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/eshop-common/templates/secret.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/eshop-common/values.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deploy/k8s/helm/identity-api/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/identity-api/.helmignore -------------------------------------------------------------------------------- /deploy/k8s/helm/identity-api/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/identity-api/Chart.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/identity-api/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/identity-api/templates/NOTES.txt -------------------------------------------------------------------------------- /deploy/k8s/helm/identity-api/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/identity-api/templates/_helpers.tpl -------------------------------------------------------------------------------- /deploy/k8s/helm/identity-api/templates/_names.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/identity-api/templates/_names.tpl -------------------------------------------------------------------------------- /deploy/k8s/helm/identity-api/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/identity-api/templates/configmap.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/identity-api/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/identity-api/templates/deployment.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/identity-api/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/identity-api/templates/ingress.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/identity-api/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/identity-api/templates/service.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/identity-api/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/identity-api/values.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/inf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/inf.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/ingress_values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/ingress_values.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/ingress_values_dockerk8s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/ingress_values_dockerk8s.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/ingress_values_linkerd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/ingress_values_linkerd.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/keystore-data/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/keystore-data/.helmignore -------------------------------------------------------------------------------- /deploy/k8s/helm/keystore-data/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/keystore-data/Chart.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/keystore-data/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/keystore-data/templates/NOTES.txt -------------------------------------------------------------------------------- /deploy/k8s/helm/keystore-data/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/keystore-data/templates/_helpers.tpl -------------------------------------------------------------------------------- /deploy/k8s/helm/keystore-data/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/keystore-data/templates/deployment.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/keystore-data/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/keystore-data/templates/service.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/keystore-data/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/keystore-data/values.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/locations-api/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/locations-api/.helmignore -------------------------------------------------------------------------------- /deploy/k8s/helm/locations-api/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/locations-api/Chart.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/locations-api/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/locations-api/templates/NOTES.txt -------------------------------------------------------------------------------- /deploy/k8s/helm/locations-api/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/locations-api/templates/_helpers.tpl -------------------------------------------------------------------------------- /deploy/k8s/helm/locations-api/templates/_names.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/locations-api/templates/_names.tpl -------------------------------------------------------------------------------- /deploy/k8s/helm/locations-api/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/locations-api/templates/configmap.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/locations-api/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/locations-api/templates/deployment.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/locations-api/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/locations-api/templates/service.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/locations-api/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/locations-api/values.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/marketing-api/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/marketing-api/.helmignore -------------------------------------------------------------------------------- /deploy/k8s/helm/marketing-api/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/marketing-api/Chart.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/marketing-api/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/marketing-api/templates/NOTES.txt -------------------------------------------------------------------------------- /deploy/k8s/helm/marketing-api/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/marketing-api/templates/_helpers.tpl -------------------------------------------------------------------------------- /deploy/k8s/helm/marketing-api/templates/_names.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/marketing-api/templates/_names.tpl -------------------------------------------------------------------------------- /deploy/k8s/helm/marketing-api/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/marketing-api/templates/configmap.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/marketing-api/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/marketing-api/templates/deployment.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/marketing-api/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/marketing-api/templates/service.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/marketing-api/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/marketing-api/values.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/mobileshoppingagg/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/mobileshoppingagg/.helmignore -------------------------------------------------------------------------------- /deploy/k8s/helm/mobileshoppingagg/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/mobileshoppingagg/Chart.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/mobileshoppingagg/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/mobileshoppingagg/templates/NOTES.txt -------------------------------------------------------------------------------- /deploy/k8s/helm/mobileshoppingagg/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/mobileshoppingagg/templates/_helpers.tpl -------------------------------------------------------------------------------- /deploy/k8s/helm/mobileshoppingagg/templates/_names.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/mobileshoppingagg/templates/_names.tpl -------------------------------------------------------------------------------- /deploy/k8s/helm/mobileshoppingagg/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/mobileshoppingagg/templates/configmap.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/mobileshoppingagg/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/mobileshoppingagg/templates/deployment.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/mobileshoppingagg/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/mobileshoppingagg/templates/service.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/mobileshoppingagg/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/mobileshoppingagg/values.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/nosql-data/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/nosql-data/.helmignore -------------------------------------------------------------------------------- /deploy/k8s/helm/nosql-data/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/nosql-data/Chart.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/nosql-data/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/nosql-data/templates/NOTES.txt -------------------------------------------------------------------------------- /deploy/k8s/helm/nosql-data/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/nosql-data/templates/_helpers.tpl -------------------------------------------------------------------------------- /deploy/k8s/helm/nosql-data/templates/_names.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/nosql-data/templates/_names.tpl -------------------------------------------------------------------------------- /deploy/k8s/helm/nosql-data/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/nosql-data/templates/deployment.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/nosql-data/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/nosql-data/templates/service.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/nosql-data/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/nosql-data/values.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/ordering-api/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/ordering-api/.helmignore -------------------------------------------------------------------------------- /deploy/k8s/helm/ordering-api/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/ordering-api/Chart.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/ordering-api/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/ordering-api/templates/NOTES.txt -------------------------------------------------------------------------------- /deploy/k8s/helm/ordering-api/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/ordering-api/templates/_helpers.tpl -------------------------------------------------------------------------------- /deploy/k8s/helm/ordering-api/templates/_names.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/ordering-api/templates/_names.tpl -------------------------------------------------------------------------------- /deploy/k8s/helm/ordering-api/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/ordering-api/templates/configmap.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/ordering-api/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/ordering-api/templates/deployment.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/ordering-api/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/ordering-api/templates/service.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/ordering-api/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/ordering-api/values.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/ordering-backgroundtasks/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/ordering-backgroundtasks/.helmignore -------------------------------------------------------------------------------- /deploy/k8s/helm/ordering-backgroundtasks/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/ordering-backgroundtasks/Chart.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/ordering-backgroundtasks/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/ordering-backgroundtasks/values.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/ordering-signalrhub/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/ordering-signalrhub/.helmignore -------------------------------------------------------------------------------- /deploy/k8s/helm/ordering-signalrhub/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/ordering-signalrhub/Chart.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/ordering-signalrhub/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/ordering-signalrhub/templates/NOTES.txt -------------------------------------------------------------------------------- /deploy/k8s/helm/ordering-signalrhub/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/ordering-signalrhub/templates/_helpers.tpl -------------------------------------------------------------------------------- /deploy/k8s/helm/ordering-signalrhub/templates/_names.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/ordering-signalrhub/templates/_names.tpl -------------------------------------------------------------------------------- /deploy/k8s/helm/ordering-signalrhub/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/ordering-signalrhub/templates/service.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/ordering-signalrhub/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/ordering-signalrhub/values.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/payment-api/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/payment-api/.helmignore -------------------------------------------------------------------------------- /deploy/k8s/helm/payment-api/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/payment-api/Chart.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/payment-api/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/payment-api/templates/NOTES.txt -------------------------------------------------------------------------------- /deploy/k8s/helm/payment-api/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/payment-api/templates/_helpers.tpl -------------------------------------------------------------------------------- /deploy/k8s/helm/payment-api/templates/_names.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/payment-api/templates/_names.tpl -------------------------------------------------------------------------------- /deploy/k8s/helm/payment-api/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/payment-api/templates/configmap.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/payment-api/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/payment-api/templates/deployment.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/payment-api/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/payment-api/templates/service.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/payment-api/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/payment-api/values.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/rabbitmq/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/rabbitmq/.helmignore -------------------------------------------------------------------------------- /deploy/k8s/helm/rabbitmq/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/rabbitmq/Chart.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/rabbitmq/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/rabbitmq/templates/NOTES.txt -------------------------------------------------------------------------------- /deploy/k8s/helm/rabbitmq/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/rabbitmq/templates/_helpers.tpl -------------------------------------------------------------------------------- /deploy/k8s/helm/rabbitmq/templates/_names.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/rabbitmq/templates/_names.tpl -------------------------------------------------------------------------------- /deploy/k8s/helm/rabbitmq/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/rabbitmq/templates/deployment.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/rabbitmq/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/rabbitmq/templates/service.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/rabbitmq/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/rabbitmq/values.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/sql-data/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/sql-data/.helmignore -------------------------------------------------------------------------------- /deploy/k8s/helm/sql-data/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/sql-data/Chart.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/sql-data/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/sql-data/templates/NOTES.txt -------------------------------------------------------------------------------- /deploy/k8s/helm/sql-data/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/sql-data/templates/_helpers.tpl -------------------------------------------------------------------------------- /deploy/k8s/helm/sql-data/templates/_names.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/sql-data/templates/_names.tpl -------------------------------------------------------------------------------- /deploy/k8s/helm/sql-data/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/sql-data/templates/deployment.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/sql-data/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/sql-data/templates/service.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/sql-data/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/sql-data/values.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/tls-support/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/tls-support/.helmignore -------------------------------------------------------------------------------- /deploy/k8s/helm/tls-support/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/tls-support/Chart.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/tls-support/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/tls-support/templates/_helpers.tpl -------------------------------------------------------------------------------- /deploy/k8s/helm/tls-support/templates/issuer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/tls-support/templates/issuer.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/tls-support/values-prod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/tls-support/values-prod.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/tls-support/values-staging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/tls-support/values-staging.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/webhooks-api/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webhooks-api/.helmignore -------------------------------------------------------------------------------- /deploy/k8s/helm/webhooks-api/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webhooks-api/Chart.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/webhooks-api/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webhooks-api/templates/NOTES.txt -------------------------------------------------------------------------------- /deploy/k8s/helm/webhooks-api/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webhooks-api/templates/_helpers.tpl -------------------------------------------------------------------------------- /deploy/k8s/helm/webhooks-api/templates/_names.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webhooks-api/templates/_names.tpl -------------------------------------------------------------------------------- /deploy/k8s/helm/webhooks-api/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webhooks-api/templates/configmap.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/webhooks-api/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webhooks-api/templates/deployment.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/webhooks-api/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webhooks-api/templates/ingress.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/webhooks-api/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webhooks-api/templates/service.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/webhooks-api/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webhooks-api/values.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/webhooks-web/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webhooks-web/.helmignore -------------------------------------------------------------------------------- /deploy/k8s/helm/webhooks-web/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webhooks-web/Chart.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/webhooks-web/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webhooks-web/templates/NOTES.txt -------------------------------------------------------------------------------- /deploy/k8s/helm/webhooks-web/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webhooks-web/templates/_helpers.tpl -------------------------------------------------------------------------------- /deploy/k8s/helm/webhooks-web/templates/_names.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webhooks-web/templates/_names.tpl -------------------------------------------------------------------------------- /deploy/k8s/helm/webhooks-web/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webhooks-web/templates/configmap.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/webhooks-web/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webhooks-web/templates/deployment.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/webhooks-web/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webhooks-web/templates/ingress.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/webhooks-web/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webhooks-web/templates/service.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/webhooks-web/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webhooks-web/values.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/webmvc/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webmvc/.helmignore -------------------------------------------------------------------------------- /deploy/k8s/helm/webmvc/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webmvc/Chart.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/webmvc/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webmvc/templates/NOTES.txt -------------------------------------------------------------------------------- /deploy/k8s/helm/webmvc/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webmvc/templates/_helpers.tpl -------------------------------------------------------------------------------- /deploy/k8s/helm/webmvc/templates/_names.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webmvc/templates/_names.tpl -------------------------------------------------------------------------------- /deploy/k8s/helm/webmvc/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webmvc/templates/configmap.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/webmvc/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webmvc/templates/deployment.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/webmvc/templates/ingress-dockerk8s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webmvc/templates/ingress-dockerk8s.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/webmvc/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webmvc/templates/ingress.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/webmvc/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webmvc/templates/service.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/webmvc/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webmvc/values.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/webshoppingagg/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webshoppingagg/.helmignore -------------------------------------------------------------------------------- /deploy/k8s/helm/webshoppingagg/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webshoppingagg/Chart.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/webshoppingagg/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webshoppingagg/templates/NOTES.txt -------------------------------------------------------------------------------- /deploy/k8s/helm/webshoppingagg/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webshoppingagg/templates/_helpers.tpl -------------------------------------------------------------------------------- /deploy/k8s/helm/webshoppingagg/templates/_names.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webshoppingagg/templates/_names.tpl -------------------------------------------------------------------------------- /deploy/k8s/helm/webshoppingagg/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webshoppingagg/templates/configmap.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/webshoppingagg/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webshoppingagg/templates/deployment.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/webshoppingagg/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webshoppingagg/templates/service.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/webshoppingagg/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webshoppingagg/values.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/webspa/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webspa/.helmignore -------------------------------------------------------------------------------- /deploy/k8s/helm/webspa/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webspa/Chart.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/webspa/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webspa/templates/NOTES.txt -------------------------------------------------------------------------------- /deploy/k8s/helm/webspa/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webspa/templates/_helpers.tpl -------------------------------------------------------------------------------- /deploy/k8s/helm/webspa/templates/_names.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webspa/templates/_names.tpl -------------------------------------------------------------------------------- /deploy/k8s/helm/webspa/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webspa/templates/configmap.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/webspa/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webspa/templates/deployment.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/webspa/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webspa/templates/ingress.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/webspa/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webspa/templates/service.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/webspa/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webspa/values.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/webstatus/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webstatus/.helmignore -------------------------------------------------------------------------------- /deploy/k8s/helm/webstatus/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webstatus/Chart.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/webstatus/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webstatus/templates/NOTES.txt -------------------------------------------------------------------------------- /deploy/k8s/helm/webstatus/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webstatus/templates/_helpers.tpl -------------------------------------------------------------------------------- /deploy/k8s/helm/webstatus/templates/_names.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webstatus/templates/_names.tpl -------------------------------------------------------------------------------- /deploy/k8s/helm/webstatus/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webstatus/templates/configmap.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/webstatus/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webstatus/templates/deployment.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/webstatus/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webstatus/templates/ingress.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/webstatus/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webstatus/templates/service.yaml -------------------------------------------------------------------------------- /deploy/k8s/helm/webstatus/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/helm/webstatus/values.yaml -------------------------------------------------------------------------------- /deploy/k8s/linkerd/basket-api-sp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/linkerd/basket-api-sp.yaml -------------------------------------------------------------------------------- /deploy/k8s/linkerd/catalog-api-sp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/linkerd/catalog-api-sp.yaml -------------------------------------------------------------------------------- /deploy/k8s/nginx-ingress/local-cm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/nginx-ingress/local-cm.yaml -------------------------------------------------------------------------------- /deploy/k8s/nginx-ingress/local-dockerk8s/identityapi-cm-fix.yaml: -------------------------------------------------------------------------------- 1 | data: 2 | mvc_e: http://10.0.75.1/webmvc 3 | -------------------------------------------------------------------------------- /deploy/k8s/nginx-ingress/local-dockerk8s/mvc-cm-fix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/nginx-ingress/local-dockerk8s/mvc-cm-fix.yaml -------------------------------------------------------------------------------- /deploy/k8s/nginx-ingress/local-dockerk8s/mvc-fix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/nginx-ingress/local-dockerk8s/mvc-fix.yaml -------------------------------------------------------------------------------- /deploy/k8s/nginx-ingress/local-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/nginx-ingress/local-svc.yaml -------------------------------------------------------------------------------- /deploy/k8s/nginx-ingress/mandatory.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/nginx-ingress/mandatory.yaml -------------------------------------------------------------------------------- /deploy/k8s/nginx-ingress/service-nodeport.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/nginx-ingress/service-nodeport.yaml -------------------------------------------------------------------------------- /deploy/k8s/nodeports/rabbitmq-admin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/nodeports/rabbitmq-admin.yaml -------------------------------------------------------------------------------- /deploy/k8s/nodeports/sql-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/k8s/nodeports/sql-service.yaml -------------------------------------------------------------------------------- /deploy/windows/set-dockernat-networkategory-to-private.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/deploy/windows/set-dockernat-networkategory-to-private.ps1 -------------------------------------------------------------------------------- /img/DevOps-Cover-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/img/DevOps-Cover-small.png -------------------------------------------------------------------------------- /img/Microservices-cover-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/img/Microservices-cover-small.png -------------------------------------------------------------------------------- /img/eShopOnContainers-architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/img/eShopOnContainers-architecture.png -------------------------------------------------------------------------------- /img/eshop-webmvc-app-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/img/eshop-webmvc-app-screenshot.png -------------------------------------------------------------------------------- /img/eshop_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/img/eshop_logo.png -------------------------------------------------------------------------------- /img/xamarin-enterprise-patterns-ebook-cover-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/img/xamarin-enterprise-patterns-ebook-cover-small.png -------------------------------------------------------------------------------- /obsolete/KUBERNETES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/obsolete/KUBERNETES.md -------------------------------------------------------------------------------- /obsolete/readme/README.ENV.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/obsolete/readme/README.ENV.md -------------------------------------------------------------------------------- /obsolete/readme/readme-docker-compose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/obsolete/readme/readme-docker-compose.md -------------------------------------------------------------------------------- /obsolete/readme/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/obsolete/readme/readme.md -------------------------------------------------------------------------------- /obsolete/vsts-docs/builds/images/android-build-step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/obsolete/vsts-docs/builds/images/android-build-step1.png -------------------------------------------------------------------------------- /obsolete/vsts-docs/builds/images/android-build-step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/obsolete/vsts-docs/builds/images/android-build-step2.png -------------------------------------------------------------------------------- /obsolete/vsts-docs/builds/images/android-build-step3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/obsolete/vsts-docs/builds/images/android-build-step3.png -------------------------------------------------------------------------------- /obsolete/vsts-docs/builds/images/android-build-step4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/obsolete/vsts-docs/builds/images/android-build-step4.png -------------------------------------------------------------------------------- /obsolete/vsts-docs/builds/images/android-build-step5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/obsolete/vsts-docs/builds/images/android-build-step5.png -------------------------------------------------------------------------------- /obsolete/vsts-docs/builds/images/android-build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/obsolete/vsts-docs/builds/images/android-build.png -------------------------------------------------------------------------------- /obsolete/vsts-docs/builds/images/ios-build-step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/obsolete/vsts-docs/builds/images/ios-build-step1.png -------------------------------------------------------------------------------- /obsolete/vsts-docs/builds/images/ios-build-step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/obsolete/vsts-docs/builds/images/ios-build-step2.png -------------------------------------------------------------------------------- /obsolete/vsts-docs/builds/images/ios-build-step3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/obsolete/vsts-docs/builds/images/ios-build-step3.png -------------------------------------------------------------------------------- /obsolete/vsts-docs/builds/images/ios-build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/obsolete/vsts-docs/builds/images/ios-build.png -------------------------------------------------------------------------------- /obsolete/vsts-docs/builds/xamarin-android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/obsolete/vsts-docs/builds/xamarin-android.md -------------------------------------------------------------------------------- /obsolete/vsts-docs/builds/xamarin-iOS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/obsolete/vsts-docs/builds/xamarin-iOS.md -------------------------------------------------------------------------------- /obsolete/vsts-docs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/obsolete/vsts-docs/readme.md -------------------------------------------------------------------------------- /src/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/.dockerignore -------------------------------------------------------------------------------- /src/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/.env -------------------------------------------------------------------------------- /src/ApiGateways/Envoy/config/mobilemarketing/envoy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/ApiGateways/Envoy/config/mobilemarketing/envoy.yaml -------------------------------------------------------------------------------- /src/ApiGateways/Envoy/config/mobileshopping/envoy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/ApiGateways/Envoy/config/mobileshopping/envoy.yaml -------------------------------------------------------------------------------- /src/ApiGateways/Envoy/config/webmarketing/envoy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/ApiGateways/Envoy/config/webmarketing/envoy.yaml -------------------------------------------------------------------------------- /src/ApiGateways/Envoy/config/webshopping/envoy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/ApiGateways/Envoy/config/webshopping/envoy.yaml -------------------------------------------------------------------------------- /src/ApiGateways/Mobile.Bff.Shopping/aggregator/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/ApiGateways/Mobile.Bff.Shopping/aggregator/Dockerfile -------------------------------------------------------------------------------- /src/ApiGateways/Mobile.Bff.Shopping/aggregator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/ApiGateways/Mobile.Bff.Shopping/aggregator/Program.cs -------------------------------------------------------------------------------- /src/ApiGateways/Mobile.Bff.Shopping/aggregator/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/ApiGateways/Mobile.Bff.Shopping/aggregator/Startup.cs -------------------------------------------------------------------------------- /src/ApiGateways/Mobile.Bff.Shopping/aggregator/azds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/ApiGateways/Mobile.Bff.Shopping/aggregator/azds.yaml -------------------------------------------------------------------------------- /src/ApiGateways/Mobile.Bff.Shopping/aggregator/values.dev.yaml: -------------------------------------------------------------------------------- 1 | ingress: 2 | enabled: true 3 | tls: [] -------------------------------------------------------------------------------- /src/ApiGateways/Mobile.Bff.Shopping/apigw/azds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/ApiGateways/Mobile.Bff.Shopping/apigw/azds.yaml -------------------------------------------------------------------------------- /src/ApiGateways/Mobile.Bff.Shopping/apigw/values.dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/ApiGateways/Mobile.Bff.Shopping/apigw/values.dev.yaml -------------------------------------------------------------------------------- /src/ApiGateways/Web.Bff.Shopping/aggregator/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/ApiGateways/Web.Bff.Shopping/aggregator/Dockerfile -------------------------------------------------------------------------------- /src/ApiGateways/Web.Bff.Shopping/aggregator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/ApiGateways/Web.Bff.Shopping/aggregator/Program.cs -------------------------------------------------------------------------------- /src/ApiGateways/Web.Bff.Shopping/aggregator/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/ApiGateways/Web.Bff.Shopping/aggregator/Startup.cs -------------------------------------------------------------------------------- /src/ApiGateways/Web.Bff.Shopping/aggregator/azds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/ApiGateways/Web.Bff.Shopping/aggregator/azds.yaml -------------------------------------------------------------------------------- /src/ApiGateways/Web.Bff.Shopping/aggregator/values.dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/ApiGateways/Web.Bff.Shopping/aggregator/values.dev.yaml -------------------------------------------------------------------------------- /src/BuildingBlocks/EventBus/EventBus/EventBus.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/BuildingBlocks/EventBus/EventBus/EventBus.csproj -------------------------------------------------------------------------------- /src/BuildingBlocks/EventBus/EventBus/SubscriptionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/BuildingBlocks/EventBus/EventBus/SubscriptionInfo.cs -------------------------------------------------------------------------------- /src/Create-DockerfileSolutionRestore.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Create-DockerfileSolutionRestore.ps1 -------------------------------------------------------------------------------- /src/DockerfileSolutionRestore.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/DockerfileSolutionRestore.txt -------------------------------------------------------------------------------- /src/Mobile/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Mobile/.gitignore -------------------------------------------------------------------------------- /src/Mobile/AndroidSDKManager.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Mobile/AndroidSDKManager.ps1 -------------------------------------------------------------------------------- /src/Mobile/Components/GeolocatorPlugin-1.0.3.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Mobile/Components/GeolocatorPlugin-1.0.3.info -------------------------------------------------------------------------------- /src/Mobile/Components/GeolocatorPlugin-1.0.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Mobile/Components/GeolocatorPlugin-1.0.3.png -------------------------------------------------------------------------------- /src/Mobile/Images/AndroidEmulator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Mobile/Images/AndroidEmulator.png -------------------------------------------------------------------------------- /src/Mobile/Images/Auth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Mobile/Images/Auth.png -------------------------------------------------------------------------------- /src/Mobile/Images/Catalog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Mobile/Images/Catalog.png -------------------------------------------------------------------------------- /src/Mobile/Images/Filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Mobile/Images/Filter.png -------------------------------------------------------------------------------- /src/Mobile/Images/MacAgent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Mobile/Images/MacAgent.png -------------------------------------------------------------------------------- /src/Mobile/Images/OrderDetail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Mobile/Images/OrderDetail.png -------------------------------------------------------------------------------- /src/Mobile/Images/Preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Mobile/Images/Preview.png -------------------------------------------------------------------------------- /src/Mobile/Images/Profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Mobile/Images/Profile.png -------------------------------------------------------------------------------- /src/Mobile/Images/Settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Mobile/Images/Settings.png -------------------------------------------------------------------------------- /src/Mobile/Images/ShoppingCart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Mobile/Images/ShoppingCart.png -------------------------------------------------------------------------------- /src/Mobile/Images/Unsupported52.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Mobile/Images/Unsupported52.0.png -------------------------------------------------------------------------------- /src/Mobile/Images/Updates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Mobile/Images/Updates.png -------------------------------------------------------------------------------- /src/Mobile/Images/could-not-connect-to-the-debugger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Mobile/Images/could-not-connect-to-the-debugger.png -------------------------------------------------------------------------------- /src/Mobile/Images/launch-hyperv-manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Mobile/Images/launch-hyperv-manager.png -------------------------------------------------------------------------------- /src/Mobile/Images/set-compatibility-vs-sml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Mobile/Images/set-compatibility-vs-sml.png -------------------------------------------------------------------------------- /src/Mobile/Images/vm-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Mobile/Images/vm-settings.png -------------------------------------------------------------------------------- /src/Mobile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Mobile/README.md -------------------------------------------------------------------------------- /src/Mobile/eShopOnContainers-Android.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Mobile/eShopOnContainers-Android.sln -------------------------------------------------------------------------------- /src/Mobile/eShopOnContainers-MobileApps.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Mobile/eShopOnContainers-MobileApps.sln -------------------------------------------------------------------------------- /src/Mobile/eShopOnContainers-iOS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Mobile/eShopOnContainers-iOS.sln -------------------------------------------------------------------------------- /src/Mobile/eShopOnContainers/eShopOnContainers.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Mobile/eShopOnContainers/eShopOnContainers.iOS/Main.cs -------------------------------------------------------------------------------- /src/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/NuGet.config -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Basket/Basket.API/.dockerignore -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/Auth/Client/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Basket/Basket.API/Auth/Client/popup.html -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/Basket.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Basket/Basket.API/Basket.API.csproj -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/BasketSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Basket/Basket.API/BasketSettings.cs -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Basket/Basket.API/Dockerfile -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/Dockerfile.develop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Basket/Basket.API/Dockerfile.develop -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/Grpc/BasketService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Basket/Basket.API/Grpc/BasketService.cs -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/Model/BasketCheckout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Basket/Basket.API/Model/BasketCheckout.cs -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/Model/BasketItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Basket/Basket.API/Model/BasketItem.cs -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/Model/CustomerBasket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Basket/Basket.API/Model/CustomerBasket.cs -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/Model/IBasketRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Basket/Basket.API/Model/IBasketRepository.cs -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Basket/Basket.API/Program.cs -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/Proto/basket.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Basket/Basket.API/Proto/basket.proto -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Basket/Basket.API/README.md -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/Services/IIdentityService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Basket/Basket.API/Services/IIdentityService.cs -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/Services/IdentityService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Basket/Basket.API/Services/IdentityService.cs -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Basket/Basket.API/Startup.cs -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Basket/Basket.API/appsettings.Development.json -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Basket/Basket.API/appsettings.json -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/azds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Basket/Basket.API/azds.yaml -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/values.dev.yaml: -------------------------------------------------------------------------------- 1 | ingress: 2 | enabled: true 3 | tls: [] -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Basket/Basket.API/web.config -------------------------------------------------------------------------------- /src/Services/Basket/Basket.FunctionalTests/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Basket/Basket.FunctionalTests/appsettings.json -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Catalog.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Catalog/Catalog.API/Catalog.API.csproj -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/CatalogSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Catalog/Catalog.API/CatalogSettings.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Catalog/Catalog.API/Dockerfile -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Dockerfile.develop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Catalog/Catalog.API/Dockerfile.develop -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Grpc/CatalogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Catalog/Catalog.API/Grpc/CatalogService.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/IntegrationEvents/EventHandling/AnyFutureIntegrationEventHandler.cs.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | // To implement ProductPriceChangedEvent.cs here 4 | -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Model/CatalogBrand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Catalog/Catalog.API/Model/CatalogBrand.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Model/CatalogItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Catalog/Catalog.API/Model/CatalogItem.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Model/CatalogType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Catalog/Catalog.API/Model/CatalogType.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Pics/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Catalog/Catalog.API/Pics/1.png -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Pics/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Catalog/Catalog.API/Pics/10.png -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Pics/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Catalog/Catalog.API/Pics/11.png -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Pics/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Catalog/Catalog.API/Pics/12.png -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Pics/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Catalog/Catalog.API/Pics/2.png -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Pics/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Catalog/Catalog.API/Pics/3.png -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Pics/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Catalog/Catalog.API/Pics/4.png -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Pics/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Catalog/Catalog.API/Pics/5.png -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Pics/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Catalog/Catalog.API/Pics/6.png -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Pics/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Catalog/Catalog.API/Pics/7.png -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Pics/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Catalog/Catalog.API/Pics/8.png -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Pics/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Catalog/Catalog.API/Pics/9.png -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Catalog/Catalog.API/Program.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Proto/catalog.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Catalog/Catalog.API/Proto/catalog.proto -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Catalog/Catalog.API/README.md -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Setup/CatalogBrands.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Catalog/Catalog.API/Setup/CatalogBrands.csv -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Setup/CatalogItems.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Catalog/Catalog.API/Setup/CatalogItems.csv -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Setup/CatalogItems.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Catalog/Catalog.API/Setup/CatalogItems.zip -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Setup/CatalogTypes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Catalog/Catalog.API/Setup/CatalogTypes.csv -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Catalog/Catalog.API/Startup.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Catalog/Catalog.API/appsettings.json -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/azds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Catalog/Catalog.API/azds.yaml -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/eshop.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Catalog/Catalog.API/eshop.pfx -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/values.dev.yaml: -------------------------------------------------------------------------------- 1 | ingress: 2 | enabled: true 3 | tls: [] -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Catalog/Catalog.API/web.config -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Identity/Identity.API/.dockerignore -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/AppSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Identity/Identity.API/AppSettings.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Configuration/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Identity/Identity.API/Configuration/Config.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Identity/Identity.API/Dockerfile -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Dockerfile.develop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Identity/Identity.API/Dockerfile.develop -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/IWebHostExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Identity/Identity.API/IWebHostExtensions.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Identity.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Identity/Identity.API/Identity.API.csproj -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Identity/Identity.API/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Identity/Identity.API/Program.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Identity/Identity.API/README.md -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Setup/Users.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Identity/Identity.API/Setup/Users.csv -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Setup/images.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Identity/Identity.API/Setup/images.zip -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Identity/Identity.API/Startup.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Identity/Identity.API/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Identity/Identity.API/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Identity/Identity.API/appsettings.json -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/azds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Identity/Identity.API/azds.yaml -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Identity/Identity.API/bundleconfig.json -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/libman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Identity/Identity.API/libman.json -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/values.dev.yaml: -------------------------------------------------------------------------------- 1 | enableDevspaces: "true" 2 | -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Identity/Identity.API/web.config -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Identity/Identity.API/wwwroot/css/site.css -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Identity/Identity.API/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Identity/Identity.API/wwwroot/icon.jpg -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Identity/Identity.API/wwwroot/icon.png -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Services/Location/Locations.API/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Location/Locations.API/Dockerfile -------------------------------------------------------------------------------- /src/Services/Location/Locations.API/Dockerfile.develop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Location/Locations.API/Dockerfile.develop -------------------------------------------------------------------------------- /src/Services/Location/Locations.API/LocationSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Location/Locations.API/LocationSettings.cs -------------------------------------------------------------------------------- /src/Services/Location/Locations.API/Locations.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Location/Locations.API/Locations.API.csproj -------------------------------------------------------------------------------- /src/Services/Location/Locations.API/Model/Locations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Location/Locations.API/Model/Locations.cs -------------------------------------------------------------------------------- /src/Services/Location/Locations.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Location/Locations.API/Program.cs -------------------------------------------------------------------------------- /src/Services/Location/Locations.API/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Location/Locations.API/Startup.cs -------------------------------------------------------------------------------- /src/Services/Location/Locations.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Location/Locations.API/appsettings.json -------------------------------------------------------------------------------- /src/Services/Location/Locations.API/azds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Location/Locations.API/azds.yaml -------------------------------------------------------------------------------- /src/Services/Location/Locations.API/values.dev.yaml: -------------------------------------------------------------------------------- 1 | ingress: 2 | enabled: true 3 | tls: [] -------------------------------------------------------------------------------- /src/Services/Marketing/Infrastructure/AzureFunctions/host.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /src/Services/Marketing/Marketing.API/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Marketing/Marketing.API/Dockerfile -------------------------------------------------------------------------------- /src/Services/Marketing/Marketing.API/Dockerfile.develop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Marketing/Marketing.API/Dockerfile.develop -------------------------------------------------------------------------------- /src/Services/Marketing/Marketing.API/Dto/CampaignDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Marketing/Marketing.API/Dto/CampaignDTO.cs -------------------------------------------------------------------------------- /src/Services/Marketing/Marketing.API/Model/Campaign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Marketing/Marketing.API/Model/Campaign.cs -------------------------------------------------------------------------------- /src/Services/Marketing/Marketing.API/Model/Location.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Marketing/Marketing.API/Model/Location.cs -------------------------------------------------------------------------------- /src/Services/Marketing/Marketing.API/Model/Rule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Marketing/Marketing.API/Model/Rule.cs -------------------------------------------------------------------------------- /src/Services/Marketing/Marketing.API/Model/RuleType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Marketing/Marketing.API/Model/RuleType.cs -------------------------------------------------------------------------------- /src/Services/Marketing/Marketing.API/Pics/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Marketing/Marketing.API/Pics/1.png -------------------------------------------------------------------------------- /src/Services/Marketing/Marketing.API/Pics/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Marketing/Marketing.API/Pics/2.png -------------------------------------------------------------------------------- /src/Services/Marketing/Marketing.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Marketing/Marketing.API/Program.cs -------------------------------------------------------------------------------- /src/Services/Marketing/Marketing.API/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Marketing/Marketing.API/Startup.cs -------------------------------------------------------------------------------- /src/Services/Marketing/Marketing.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Marketing/Marketing.API/appsettings.json -------------------------------------------------------------------------------- /src/Services/Marketing/Marketing.API/azds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Marketing/Marketing.API/azds.yaml -------------------------------------------------------------------------------- /src/Services/Marketing/Marketing.API/values.dev.yaml: -------------------------------------------------------------------------------- 1 | ingress: 2 | enabled: true 3 | tls: [] -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Ordering/Ordering.API/.dockerignore -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Ordering/Ordering.API/Dockerfile -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/Dockerfile.develop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Ordering/Ordering.API/Dockerfile.develop -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/Ordering.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Ordering/Ordering.API/Ordering.API.csproj -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/OrderingSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Ordering/Ordering.API/OrderingSettings.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Ordering/Ordering.API/Program.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/Proto/ordering.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Ordering/Ordering.API/Proto/ordering.proto -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Ordering/Ordering.API/README.md -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/Setup/CardTypes.csv: -------------------------------------------------------------------------------- 1 | CardType 2 | Amex 3 | Visa 4 | MasterCard 5 | Capital One -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/Setup/OrderStatus.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Ordering/Ordering.API/Setup/OrderStatus.csv -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Ordering/Ordering.API/Startup.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Ordering/Ordering.API/appsettings.json -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/azds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Ordering/Ordering.API/azds.yaml -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Ordering/Ordering.API/web.config -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.Domain/SeedWork/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Ordering/Ordering.Domain/SeedWork/Entity.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.SignalrHub/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Ordering/Ordering.SignalrHub/Dockerfile -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.SignalrHub/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Ordering/Ordering.SignalrHub/Program.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.SignalrHub/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Ordering/Ordering.SignalrHub/Startup.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.SignalrHub/azds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Ordering/Ordering.SignalrHub/azds.yaml -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.UnitTests/Builders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Ordering/Ordering.UnitTests/Builders.cs -------------------------------------------------------------------------------- /src/Services/Payment/Payment.API/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Payment/Payment.API/Dockerfile -------------------------------------------------------------------------------- /src/Services/Payment/Payment.API/Dockerfile.develop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Payment/Payment.API/Dockerfile.develop -------------------------------------------------------------------------------- /src/Services/Payment/Payment.API/Payment.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Payment/Payment.API/Payment.API.csproj -------------------------------------------------------------------------------- /src/Services/Payment/Payment.API/PaymentSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Payment/Payment.API/PaymentSettings.cs -------------------------------------------------------------------------------- /src/Services/Payment/Payment.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Payment/Payment.API/Program.cs -------------------------------------------------------------------------------- /src/Services/Payment/Payment.API/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Payment/Payment.API/Startup.cs -------------------------------------------------------------------------------- /src/Services/Payment/Payment.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Payment/Payment.API/appsettings.json -------------------------------------------------------------------------------- /src/Services/Payment/Payment.API/azds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Payment/Payment.API/azds.yaml -------------------------------------------------------------------------------- /src/Services/Webhooks/Webhooks.API/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Webhooks/Webhooks.API/Dockerfile -------------------------------------------------------------------------------- /src/Services/Webhooks/Webhooks.API/Dockerfile.develop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Webhooks/Webhooks.API/Dockerfile.develop -------------------------------------------------------------------------------- /src/Services/Webhooks/Webhooks.API/Model/WebhookData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Webhooks/Webhooks.API/Model/WebhookData.cs -------------------------------------------------------------------------------- /src/Services/Webhooks/Webhooks.API/Model/WebhookType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Webhooks/Webhooks.API/Model/WebhookType.cs -------------------------------------------------------------------------------- /src/Services/Webhooks/Webhooks.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Webhooks/Webhooks.API/Program.cs -------------------------------------------------------------------------------- /src/Services/Webhooks/Webhooks.API/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Webhooks/Webhooks.API/Startup.cs -------------------------------------------------------------------------------- /src/Services/Webhooks/Webhooks.API/Webhooks.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Webhooks/Webhooks.API/Webhooks.API.csproj -------------------------------------------------------------------------------- /src/Services/Webhooks/Webhooks.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Webhooks/Webhooks.API/appsettings.json -------------------------------------------------------------------------------- /src/Services/Webhooks/Webhooks.API/azds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Services/Webhooks/Webhooks.API/azds.yaml -------------------------------------------------------------------------------- /src/Web/WebMVC/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/.dockerignore -------------------------------------------------------------------------------- /src/Web/WebMVC/AppSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/AppSettings.cs -------------------------------------------------------------------------------- /src/Web/WebMVC/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Controllers/AccountController.cs -------------------------------------------------------------------------------- /src/Web/WebMVC/Controllers/CampaignsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Controllers/CampaignsController.cs -------------------------------------------------------------------------------- /src/Web/WebMVC/Controllers/CartController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Controllers/CartController.cs -------------------------------------------------------------------------------- /src/Web/WebMVC/Controllers/CatalogController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Controllers/CatalogController.cs -------------------------------------------------------------------------------- /src/Web/WebMVC/Controllers/ErrorController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Controllers/ErrorController.cs -------------------------------------------------------------------------------- /src/Web/WebMVC/Controllers/OrderController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Controllers/OrderController.cs -------------------------------------------------------------------------------- /src/Web/WebMVC/Controllers/OrderManagementController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Controllers/OrderManagementController.cs -------------------------------------------------------------------------------- /src/Web/WebMVC/Controllers/TestController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Controllers/TestController.cs -------------------------------------------------------------------------------- /src/Web/WebMVC/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Dockerfile -------------------------------------------------------------------------------- /src/Web/WebMVC/Dockerfile.develop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Dockerfile.develop -------------------------------------------------------------------------------- /src/Web/WebMVC/Extensions/HttpClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Extensions/HttpClientExtensions.cs -------------------------------------------------------------------------------- /src/Web/WebMVC/Extensions/SessionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Extensions/SessionExtensions.cs -------------------------------------------------------------------------------- /src/Web/WebMVC/Infrastructure/API.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Infrastructure/API.cs -------------------------------------------------------------------------------- /src/Web/WebMVC/Infrastructure/WebContextSeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Infrastructure/WebContextSeed.cs -------------------------------------------------------------------------------- /src/Web/WebMVC/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Program.cs -------------------------------------------------------------------------------- /src/Web/WebMVC/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Web/WebMVC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/README.md -------------------------------------------------------------------------------- /src/Web/WebMVC/Services/BasketService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Services/BasketService.cs -------------------------------------------------------------------------------- /src/Web/WebMVC/Services/CampaignService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Services/CampaignService.cs -------------------------------------------------------------------------------- /src/Web/WebMVC/Services/CatalogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Services/CatalogService.cs -------------------------------------------------------------------------------- /src/Web/WebMVC/Services/IBasketService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Services/IBasketService.cs -------------------------------------------------------------------------------- /src/Web/WebMVC/Services/ICampaignService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Services/ICampaignService.cs -------------------------------------------------------------------------------- /src/Web/WebMVC/Services/ICatalogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Services/ICatalogService.cs -------------------------------------------------------------------------------- /src/Web/WebMVC/Services/IIdentityParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Services/IIdentityParser.cs -------------------------------------------------------------------------------- /src/Web/WebMVC/Services/ILocationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Services/ILocationService.cs -------------------------------------------------------------------------------- /src/Web/WebMVC/Services/IOrderingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Services/IOrderingService.cs -------------------------------------------------------------------------------- /src/Web/WebMVC/Services/IdentityParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Services/IdentityParser.cs -------------------------------------------------------------------------------- /src/Web/WebMVC/Services/LocationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Services/LocationService.cs -------------------------------------------------------------------------------- /src/Web/WebMVC/Services/ModelDTOs/BasketDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Services/ModelDTOs/BasketDTO.cs -------------------------------------------------------------------------------- /src/Web/WebMVC/Services/ModelDTOs/LocationDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Services/ModelDTOs/LocationDTO.cs -------------------------------------------------------------------------------- /src/Web/WebMVC/Services/ModelDTOs/OrderDTO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Services/ModelDTOs/OrderDTO.cs -------------------------------------------------------------------------------- /src/Web/WebMVC/Services/ModelDTOs/OrderProcessAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Services/ModelDTOs/OrderProcessAction.cs -------------------------------------------------------------------------------- /src/Web/WebMVC/Services/OrderingService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Services/OrderingService.cs -------------------------------------------------------------------------------- /src/Web/WebMVC/Setup/images.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Setup/images.zip -------------------------------------------------------------------------------- /src/Web/WebMVC/Setup/override.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Setup/override.css -------------------------------------------------------------------------------- /src/Web/WebMVC/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Startup.cs -------------------------------------------------------------------------------- /src/Web/WebMVC/ViewComponents/Cart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/ViewComponents/Cart.cs -------------------------------------------------------------------------------- /src/Web/WebMVC/ViewComponents/CartList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/ViewComponents/CartList.cs -------------------------------------------------------------------------------- /src/Web/WebMVC/ViewModels/Annotations/CardExpiration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/ViewModels/Annotations/CardExpiration.cs -------------------------------------------------------------------------------- /src/Web/WebMVC/ViewModels/ApplicationUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/ViewModels/ApplicationUser.cs -------------------------------------------------------------------------------- /src/Web/WebMVC/ViewModels/Basket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/ViewModels/Basket.cs -------------------------------------------------------------------------------- /src/Web/WebMVC/ViewModels/BasketItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/ViewModels/BasketItem.cs -------------------------------------------------------------------------------- /src/Web/WebMVC/ViewModels/Campaign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/ViewModels/Campaign.cs -------------------------------------------------------------------------------- /src/Web/WebMVC/ViewModels/CampaignItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/ViewModels/CampaignItem.cs -------------------------------------------------------------------------------- /src/Web/WebMVC/ViewModels/Catalog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/ViewModels/Catalog.cs -------------------------------------------------------------------------------- /src/Web/WebMVC/ViewModels/CatalogItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/ViewModels/CatalogItem.cs -------------------------------------------------------------------------------- /src/Web/WebMVC/ViewModels/Header.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/ViewModels/Header.cs -------------------------------------------------------------------------------- /src/Web/WebMVC/ViewModels/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/ViewModels/Order.cs -------------------------------------------------------------------------------- /src/Web/WebMVC/ViewModels/OrderItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/ViewModels/OrderItem.cs -------------------------------------------------------------------------------- /src/Web/WebMVC/ViewModels/Pagination/PaginationInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/ViewModels/Pagination/PaginationInfo.cs -------------------------------------------------------------------------------- /src/Web/WebMVC/Views/Campaigns/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Views/Campaigns/Details.cshtml -------------------------------------------------------------------------------- /src/Web/WebMVC/Views/Campaigns/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Views/Campaigns/Index.cshtml -------------------------------------------------------------------------------- /src/Web/WebMVC/Views/Campaigns/_campaign.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Views/Campaigns/_campaign.cshtml -------------------------------------------------------------------------------- /src/Web/WebMVC/Views/Campaigns/_pagination.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Views/Campaigns/_pagination.cshtml -------------------------------------------------------------------------------- /src/Web/WebMVC/Views/Cart/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Views/Cart/Index.cshtml -------------------------------------------------------------------------------- /src/Web/WebMVC/Views/Catalog/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Views/Catalog/Index.cshtml -------------------------------------------------------------------------------- /src/Web/WebMVC/Views/Catalog/_pagination.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Views/Catalog/_pagination.cshtml -------------------------------------------------------------------------------- /src/Web/WebMVC/Views/Catalog/_product.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Views/Catalog/_product.cshtml -------------------------------------------------------------------------------- /src/Web/WebMVC/Views/Order/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Views/Order/Create.cshtml -------------------------------------------------------------------------------- /src/Web/WebMVC/Views/Order/Detail.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Views/Order/Detail.cshtml -------------------------------------------------------------------------------- /src/Web/WebMVC/Views/Order/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Views/Order/Index.cshtml -------------------------------------------------------------------------------- /src/Web/WebMVC/Views/Order/_OrderItems.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Views/Order/_OrderItems.cshtml -------------------------------------------------------------------------------- /src/Web/WebMVC/Views/OrderManagement/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Views/OrderManagement/Index.cshtml -------------------------------------------------------------------------------- /src/Web/WebMVC/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /src/Web/WebMVC/Views/Shared/_Header.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Views/Shared/_Header.cshtml -------------------------------------------------------------------------------- /src/Web/WebMVC/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/Web/WebMVC/Views/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Views/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /src/Web/WebMVC/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/Web/WebMVC/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/Web/WebMVC/WebMVC.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/WebMVC.csproj -------------------------------------------------------------------------------- /src/Web/WebMVC/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/appsettings.Development.json -------------------------------------------------------------------------------- /src/Web/WebMVC/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/appsettings.json -------------------------------------------------------------------------------- /src/Web/WebMVC/azds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/azds.yaml -------------------------------------------------------------------------------- /src/Web/WebMVC/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/bundleconfig.json -------------------------------------------------------------------------------- /src/Web/WebMVC/compilerconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/compilerconfig.json -------------------------------------------------------------------------------- /src/Web/WebMVC/compilerconfig.json.defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/compilerconfig.json.defaults -------------------------------------------------------------------------------- /src/Web/WebMVC/libman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/libman.json -------------------------------------------------------------------------------- /src/Web/WebMVC/values.dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/values.dev.yaml -------------------------------------------------------------------------------- /src/Web/WebMVC/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/web.config -------------------------------------------------------------------------------- /src/Web/WebMVC/wwwroot/_references.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/wwwroot/_references.js -------------------------------------------------------------------------------- /src/Web/WebMVC/wwwroot/css/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/wwwroot/css/_variables.scss -------------------------------------------------------------------------------- /src/Web/WebMVC/wwwroot/css/app.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/wwwroot/css/app.component.css -------------------------------------------------------------------------------- /src/Web/WebMVC/wwwroot/css/app.component.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/wwwroot/css/app.component.min.css -------------------------------------------------------------------------------- /src/Web/WebMVC/wwwroot/css/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/wwwroot/css/app.component.scss -------------------------------------------------------------------------------- /src/Web/WebMVC/wwwroot/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/wwwroot/css/app.css -------------------------------------------------------------------------------- /src/Web/WebMVC/wwwroot/css/basket/basket.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/wwwroot/css/basket/basket.component.css -------------------------------------------------------------------------------- /src/Web/WebMVC/wwwroot/css/basket/basket.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/wwwroot/css/basket/basket.component.scss -------------------------------------------------------------------------------- /src/Web/WebMVC/wwwroot/css/catalog/catalog.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/wwwroot/css/catalog/catalog.component.css -------------------------------------------------------------------------------- /src/Web/WebMVC/wwwroot/css/orders/orders.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/wwwroot/css/orders/orders.component.css -------------------------------------------------------------------------------- /src/Web/WebMVC/wwwroot/css/orders/orders.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/wwwroot/css/orders/orders.component.scss -------------------------------------------------------------------------------- /src/Web/WebMVC/wwwroot/css/override.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/wwwroot/css/override.css -------------------------------------------------------------------------------- /src/Web/WebMVC/wwwroot/css/toastr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/wwwroot/css/toastr.css -------------------------------------------------------------------------------- /src/Web/WebMVC/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/Web/WebMVC/wwwroot/fonts/Montserrat-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/wwwroot/fonts/Montserrat-Bold.eot -------------------------------------------------------------------------------- /src/Web/WebMVC/wwwroot/fonts/Montserrat-Bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/wwwroot/fonts/Montserrat-Bold.svg -------------------------------------------------------------------------------- /src/Web/WebMVC/wwwroot/fonts/Montserrat-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/wwwroot/fonts/Montserrat-Bold.ttf -------------------------------------------------------------------------------- /src/Web/WebMVC/wwwroot/fonts/Montserrat-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/wwwroot/fonts/Montserrat-Bold.woff -------------------------------------------------------------------------------- /src/Web/WebMVC/wwwroot/fonts/Montserrat-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/wwwroot/fonts/Montserrat-Bold.woff2 -------------------------------------------------------------------------------- /src/Web/WebMVC/wwwroot/fonts/Montserrat-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/wwwroot/fonts/Montserrat-Regular.eot -------------------------------------------------------------------------------- /src/Web/WebMVC/wwwroot/fonts/Montserrat-Regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/wwwroot/fonts/Montserrat-Regular.svg -------------------------------------------------------------------------------- /src/Web/WebMVC/wwwroot/fonts/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/wwwroot/fonts/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /src/Web/WebMVC/wwwroot/fonts/Montserrat-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/wwwroot/fonts/Montserrat-Regular.woff -------------------------------------------------------------------------------- /src/Web/WebMVC/wwwroot/fonts/Montserrat-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/wwwroot/fonts/Montserrat-Regular.woff2 -------------------------------------------------------------------------------- /src/Web/WebMVC/wwwroot/images/arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/wwwroot/images/arrow-down.png -------------------------------------------------------------------------------- /src/Web/WebMVC/wwwroot/images/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/wwwroot/images/arrow-right.svg -------------------------------------------------------------------------------- /src/Web/WebMVC/wwwroot/images/brand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/wwwroot/images/brand.png -------------------------------------------------------------------------------- /src/Web/WebMVC/wwwroot/images/brand_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/wwwroot/images/brand_dark.png -------------------------------------------------------------------------------- /src/Web/WebMVC/wwwroot/images/cart-inoperative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/wwwroot/images/cart-inoperative.png -------------------------------------------------------------------------------- /src/Web/WebMVC/wwwroot/images/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/wwwroot/images/cart.png -------------------------------------------------------------------------------- /src/Web/WebMVC/wwwroot/images/logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/wwwroot/images/logout.png -------------------------------------------------------------------------------- /src/Web/WebMVC/wwwroot/images/main_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/wwwroot/images/main_banner.png -------------------------------------------------------------------------------- /src/Web/WebMVC/wwwroot/images/main_banner_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/wwwroot/images/main_banner_text.png -------------------------------------------------------------------------------- /src/Web/WebMVC/wwwroot/images/main_banner_text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/wwwroot/images/main_banner_text.svg -------------------------------------------------------------------------------- /src/Web/WebMVC/wwwroot/images/main_footer_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/wwwroot/images/main_footer_text.png -------------------------------------------------------------------------------- /src/Web/WebMVC/wwwroot/images/my_orders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/wwwroot/images/my_orders.png -------------------------------------------------------------------------------- /src/Web/WebMVC/wwwroot/images/refresh.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebMVC/wwwroot/images/refresh.svg -------------------------------------------------------------------------------- /src/Web/WebSPA/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/.gitignore -------------------------------------------------------------------------------- /src/Web/WebSPA/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/.npmignore -------------------------------------------------------------------------------- /src/Web/WebSPA/.sass-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/.sass-lint.yml -------------------------------------------------------------------------------- /src/Web/WebSPA/AppSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/AppSettings.cs -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/assets/images/arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Client/assets/images/arrow-down.png -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/assets/images/arrow-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Client/assets/images/arrow-right.svg -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/assets/images/brand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Client/assets/images/brand.png -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/assets/images/brand_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Client/assets/images/brand_dark.png -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/assets/images/cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Client/assets/images/cart.png -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/assets/images/logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Client/assets/images/logout.png -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/assets/images/main_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Client/assets/images/main_banner.png -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/assets/images/main_banner_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Client/assets/images/main_banner_text.png -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/assets/images/main_footer_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Client/assets/images/main_footer_text.png -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/assets/images/my_orders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Client/assets/images/my_orders.png -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Client/environments/environment.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Client/favicon.ico -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/fonts/Montserrat-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Client/fonts/Montserrat-Bold.eot -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/fonts/Montserrat-Bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Client/fonts/Montserrat-Bold.svg -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/fonts/Montserrat-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Client/fonts/Montserrat-Bold.ttf -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/fonts/Montserrat-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Client/fonts/Montserrat-Bold.woff -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/fonts/Montserrat-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Client/fonts/Montserrat-Bold.woff2 -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/fonts/Montserrat-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Client/fonts/Montserrat-Regular.eot -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/fonts/Montserrat-Regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Client/fonts/Montserrat-Regular.svg -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/fonts/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Client/fonts/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/fonts/Montserrat-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Client/fonts/Montserrat-Regular.woff -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/fonts/Montserrat-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Client/fonts/Montserrat-Regular.woff2 -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/globals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Client/globals.scss -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/guid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Client/guid.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Client/index.html -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Client/main.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/modules/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Client/modules/_variables.scss -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/modules/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Client/modules/app.component.html -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/modules/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Client/modules/app.component.scss -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/modules/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Client/modules/app.component.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/modules/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Client/modules/app.module.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/modules/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Client/modules/app.routes.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/modules/app.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Client/modules/app.service.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/modules/basket/basket.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Client/modules/basket/basket.component.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/modules/basket/basket.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Client/modules/basket/basket.module.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/modules/basket/basket.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Client/modules/basket/basket.service.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/modules/catalog/catalog.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Client/modules/catalog/catalog.module.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/modules/catalog/catalog.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Client/modules/catalog/catalog.service.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/modules/orders/orders.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Client/modules/orders/orders.component.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/modules/orders/orders.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Client/modules/orders/orders.module.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/modules/orders/orders.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Client/modules/orders/orders.service.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/modules/shared/components/page-not-found/page-not-found.component.html: -------------------------------------------------------------------------------- 1 |
Page you are looking for does not exists.
-------------------------------------------------------------------------------- /src/Web/WebSPA/Client/modules/shared/components/page-not-found/page-not-found.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/modules/shared/models/identity.model.ts: -------------------------------------------------------------------------------- 1 | export interface IIdentity { 2 | 3 | } -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/modules/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Client/modules/shared/shared.module.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Client/polyfills.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Client/test.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Client/tsconfig.app.json -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Client/tsconfig.spec.json -------------------------------------------------------------------------------- /src/Web/WebSPA/Client/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Client/typings.d.ts -------------------------------------------------------------------------------- /src/Web/WebSPA/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Dockerfile -------------------------------------------------------------------------------- /src/Web/WebSPA/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Program.cs -------------------------------------------------------------------------------- /src/Web/WebSPA/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Web/WebSPA/Server/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Server/Controllers/HomeController.cs -------------------------------------------------------------------------------- /src/Web/WebSPA/Server/Infrastructure/WebContextSeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Server/Infrastructure/WebContextSeed.cs -------------------------------------------------------------------------------- /src/Web/WebSPA/Setup/images.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Setup/images.zip -------------------------------------------------------------------------------- /src/Web/WebSPA/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/Startup.cs -------------------------------------------------------------------------------- /src/Web/WebSPA/WebSPA.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/WebSPA.csproj -------------------------------------------------------------------------------- /src/Web/WebSPA/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/angular.json -------------------------------------------------------------------------------- /src/Web/WebSPA/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/appsettings.json -------------------------------------------------------------------------------- /src/Web/WebSPA/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/package-lock.json -------------------------------------------------------------------------------- /src/Web/WebSPA/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/package.json -------------------------------------------------------------------------------- /src/Web/WebSPA/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/tsconfig.json -------------------------------------------------------------------------------- /src/Web/WebSPA/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/tslint.json -------------------------------------------------------------------------------- /src/Web/WebSPA/typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/typedoc.json -------------------------------------------------------------------------------- /src/Web/WebSPA/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebSPA/web.config -------------------------------------------------------------------------------- /src/Web/WebStatus/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebStatus/Controllers/HomeController.cs -------------------------------------------------------------------------------- /src/Web/WebStatus/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebStatus/Dockerfile -------------------------------------------------------------------------------- /src/Web/WebStatus/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebStatus/Program.cs -------------------------------------------------------------------------------- /src/Web/WebStatus/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebStatus/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Web/WebStatus/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebStatus/Startup.cs -------------------------------------------------------------------------------- /src/Web/WebStatus/Views/Home/Config.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebStatus/Views/Home/Config.cshtml -------------------------------------------------------------------------------- /src/Web/WebStatus/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebStatus/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /src/Web/WebStatus/WebStatus.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebStatus/WebStatus.csproj -------------------------------------------------------------------------------- /src/Web/WebStatus/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebStatus/appsettings.Development.json -------------------------------------------------------------------------------- /src/Web/WebStatus/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebStatus/appsettings.json -------------------------------------------------------------------------------- /src/Web/WebStatus/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebStatus/bundleconfig.json -------------------------------------------------------------------------------- /src/Web/WebStatus/libman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebStatus/libman.json -------------------------------------------------------------------------------- /src/Web/WebStatus/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebStatus/wwwroot/css/site.css -------------------------------------------------------------------------------- /src/Web/WebStatus/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebStatus/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /src/Web/WebStatus/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebStatus/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/Web/WebhookClient/.dockerignore: -------------------------------------------------------------------------------- 1 | !wwwroot -------------------------------------------------------------------------------- /src/Web/WebhookClient/.gitignore: -------------------------------------------------------------------------------- 1 | !wwwroot/lib -------------------------------------------------------------------------------- /src/Web/WebhookClient/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebhookClient/Controllers/AccountController.cs -------------------------------------------------------------------------------- /src/Web/WebhookClient/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebhookClient/Dockerfile -------------------------------------------------------------------------------- /src/Web/WebhookClient/HeaderNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebhookClient/HeaderNames.cs -------------------------------------------------------------------------------- /src/Web/WebhookClient/Models/WebHookReceived.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebhookClient/Models/WebHookReceived.cs -------------------------------------------------------------------------------- /src/Web/WebhookClient/Models/WebhookData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebhookClient/Models/WebhookData.cs -------------------------------------------------------------------------------- /src/Web/WebhookClient/Models/WebhookResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebhookClient/Models/WebhookResponse.cs -------------------------------------------------------------------------------- /src/Web/WebhookClient/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebhookClient/Pages/Error.cshtml -------------------------------------------------------------------------------- /src/Web/WebhookClient/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebhookClient/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /src/Web/WebhookClient/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebhookClient/Pages/Index.cshtml -------------------------------------------------------------------------------- /src/Web/WebhookClient/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebhookClient/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /src/Web/WebhookClient/Pages/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebhookClient/Pages/Privacy.cshtml -------------------------------------------------------------------------------- /src/Web/WebhookClient/Pages/Privacy.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebhookClient/Pages/Privacy.cshtml.cs -------------------------------------------------------------------------------- /src/Web/WebhookClient/Pages/RegisterWebhook.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebhookClient/Pages/RegisterWebhook.cshtml -------------------------------------------------------------------------------- /src/Web/WebhookClient/Pages/RegisterWebhook.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebhookClient/Pages/RegisterWebhook.cshtml.cs -------------------------------------------------------------------------------- /src/Web/WebhookClient/Pages/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebhookClient/Pages/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /src/Web/WebhookClient/Pages/WebhooksList.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebhookClient/Pages/WebhooksList.cshtml -------------------------------------------------------------------------------- /src/Web/WebhookClient/Pages/WebhooksList.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebhookClient/Pages/WebhooksList.cshtml.cs -------------------------------------------------------------------------------- /src/Web/WebhookClient/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebhookClient/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /src/Web/WebhookClient/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebhookClient/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /src/Web/WebhookClient/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebhookClient/Program.cs -------------------------------------------------------------------------------- /src/Web/WebhookClient/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebhookClient/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Web/WebhookClient/Services/IHooksRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebhookClient/Services/IHooksRepository.cs -------------------------------------------------------------------------------- /src/Web/WebhookClient/Services/IWebhooksClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebhookClient/Services/IWebhooksClient.cs -------------------------------------------------------------------------------- /src/Web/WebhookClient/Services/WebhooksClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebhookClient/Services/WebhooksClient.cs -------------------------------------------------------------------------------- /src/Web/WebhookClient/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebhookClient/Settings.cs -------------------------------------------------------------------------------- /src/Web/WebhookClient/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebhookClient/Startup.cs -------------------------------------------------------------------------------- /src/Web/WebhookClient/WebhookClient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebhookClient/WebhookClient.csproj -------------------------------------------------------------------------------- /src/Web/WebhookClient/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebhookClient/appsettings.Development.json -------------------------------------------------------------------------------- /src/Web/WebhookClient/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebhookClient/appsettings.json -------------------------------------------------------------------------------- /src/Web/WebhookClient/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebhookClient/wwwroot/css/site.css -------------------------------------------------------------------------------- /src/Web/WebhookClient/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebhookClient/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/Web/WebhookClient/wwwroot/images/brand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebhookClient/wwwroot/images/brand.png -------------------------------------------------------------------------------- /src/Web/WebhookClient/wwwroot/images/main_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebhookClient/wwwroot/images/main_banner.png -------------------------------------------------------------------------------- /src/Web/WebhookClient/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebhookClient/wwwroot/js/site.js -------------------------------------------------------------------------------- /src/Web/WebhookClient/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebhookClient/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /src/Web/WebhookClient/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebhookClient/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /src/Web/WebhookClient/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/Web/WebhookClient/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /src/docker-compose-tests.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/docker-compose-tests.override.yml -------------------------------------------------------------------------------- /src/docker-compose-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/docker-compose-tests.yml -------------------------------------------------------------------------------- /src/docker-compose-windows.prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/docker-compose-windows.prod.yml -------------------------------------------------------------------------------- /src/docker-compose.dcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/docker-compose.dcproj -------------------------------------------------------------------------------- /src/docker-compose.elk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/docker-compose.elk.yml -------------------------------------------------------------------------------- /src/docker-compose.override.windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/docker-compose.override.windows.yml -------------------------------------------------------------------------------- /src/docker-compose.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/docker-compose.override.yml -------------------------------------------------------------------------------- /src/docker-compose.prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/docker-compose.prod.yml -------------------------------------------------------------------------------- /src/docker-compose.windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/docker-compose.windows.yml -------------------------------------------------------------------------------- /src/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/docker-compose.yml -------------------------------------------------------------------------------- /src/eShopOnContainers-ServicesAndWebApps.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/eShopOnContainers-ServicesAndWebApps.sln -------------------------------------------------------------------------------- /src/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "lockfileVersion": 1 3 | } 4 | -------------------------------------------------------------------------------- /src/prepare-devspaces.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/prepare-devspaces.ps1 -------------------------------------------------------------------------------- /src/run-test-infrastructure.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nirzaf/eShopOnContainers/HEAD/src/run-test-infrastructure.ps1 --------------------------------------------------------------------------------