├── .dockerignore ├── .github └── workflows │ └── dotnet.yml ├── .gitignore ├── EspressoShop.ProductCatalog ├── Controllers │ ├── ProductsController.cs │ └── ValuesController.cs ├── Dockerfile ├── EspressoShop.ProductCatalog.csproj ├── Program.cs ├── Startup.cs ├── appsettings.Development.json └── appsettings.json ├── EspressoShop.Reviews ├── Controllers │ ├── ReviewsController.cs │ ├── ValuesController.cs │ └── VersionController.cs ├── Dockerfile ├── EspressoShop.Reviews.csproj ├── Program.cs ├── Startup.cs ├── appsettings.Development.json └── appsettings.json ├── EspressoShop.Web ├── Controllers │ ├── AccountController.cs │ └── HomeController.cs ├── Dockerfile ├── EspressoShop.Web.csproj ├── Infrastructure │ └── HeadersHelper.cs ├── Models │ ├── ApplicationUser.cs │ ├── ErrorViewModel.cs │ ├── LoginViewModel.cs │ ├── ProductDetailsViewModel.cs │ ├── ProductViewModel.cs │ └── ReviewViewModel.cs ├── Program.cs ├── Services │ ├── IProductServiceClient.cs │ ├── IReviewsServiceClient.cs │ ├── Product.cs │ ├── ProductServiceClient.cs │ ├── Review.cs │ └── ReviewsServiceClient.cs ├── Startup.cs ├── Views │ ├── Account │ │ └── login.cshtml │ ├── Home │ │ ├── About.cshtml │ │ ├── Contact.cshtml │ │ ├── Index.cshtml │ │ ├── Privacy.cshtml │ │ └── Product.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ ├── _Layout.cshtml │ │ ├── _LoginPartial.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── appsettings.Development.json ├── appsettings.json ├── bundleconfig.json └── wwwroot │ ├── .gitignore │ ├── css │ ├── site.css │ └── site.min.css │ ├── favicon.ico │ ├── images │ ├── banner1.svg │ ├── banner2.svg │ ├── banner3.svg │ ├── cappuccino.jpg │ ├── espresso.jpg │ ├── flat white.jpg │ ├── latte.jpg │ ├── macchiato.jpg │ └── piccolo.jpg │ ├── js │ ├── site.js │ ├── site.min.js │ └── site.min.js.map │ └── lib │ ├── bootstrap-4.2.1 │ └── 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 │ ├── bootstrap │ ├── .bower.json │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js │ ├── jquery-validation-unobtrusive │ ├── .bower.json │ ├── LICENSE.txt │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── .bower.json │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map ├── EspressoShop.sln ├── LICENSE ├── README.md ├── cleanall.sh ├── get-reviews.sh ├── istio ├── 80-20.yaml ├── all-destination-rules.yaml ├── all-virtual-services.yaml ├── browser-based-routing.yaml ├── circuit-breaker.yaml ├── delay.yaml ├── fault.yaml ├── gateway.yaml ├── policy │ └── mixer-rule-deny-label.yaml ├── security │ └── tls-migration.yaml ├── timeout.yaml └── user-based-routing.yaml ├── kubernetes └── espresso-shop.yaml └── reset-to-v1.sh /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/.github/workflows/dotnet.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/.gitignore -------------------------------------------------------------------------------- /EspressoShop.ProductCatalog/Controllers/ProductsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.ProductCatalog/Controllers/ProductsController.cs -------------------------------------------------------------------------------- /EspressoShop.ProductCatalog/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.ProductCatalog/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /EspressoShop.ProductCatalog/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.ProductCatalog/Dockerfile -------------------------------------------------------------------------------- /EspressoShop.ProductCatalog/EspressoShop.ProductCatalog.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.ProductCatalog/EspressoShop.ProductCatalog.csproj -------------------------------------------------------------------------------- /EspressoShop.ProductCatalog/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.ProductCatalog/Program.cs -------------------------------------------------------------------------------- /EspressoShop.ProductCatalog/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.ProductCatalog/Startup.cs -------------------------------------------------------------------------------- /EspressoShop.ProductCatalog/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.ProductCatalog/appsettings.Development.json -------------------------------------------------------------------------------- /EspressoShop.ProductCatalog/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.ProductCatalog/appsettings.json -------------------------------------------------------------------------------- /EspressoShop.Reviews/Controllers/ReviewsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Reviews/Controllers/ReviewsController.cs -------------------------------------------------------------------------------- /EspressoShop.Reviews/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Reviews/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /EspressoShop.Reviews/Controllers/VersionController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Reviews/Controllers/VersionController.cs -------------------------------------------------------------------------------- /EspressoShop.Reviews/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Reviews/Dockerfile -------------------------------------------------------------------------------- /EspressoShop.Reviews/EspressoShop.Reviews.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Reviews/EspressoShop.Reviews.csproj -------------------------------------------------------------------------------- /EspressoShop.Reviews/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Reviews/Program.cs -------------------------------------------------------------------------------- /EspressoShop.Reviews/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Reviews/Startup.cs -------------------------------------------------------------------------------- /EspressoShop.Reviews/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Reviews/appsettings.Development.json -------------------------------------------------------------------------------- /EspressoShop.Reviews/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Reviews/appsettings.json -------------------------------------------------------------------------------- /EspressoShop.Web/Controllers/AccountController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/Controllers/AccountController.cs -------------------------------------------------------------------------------- /EspressoShop.Web/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/Controllers/HomeController.cs -------------------------------------------------------------------------------- /EspressoShop.Web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/Dockerfile -------------------------------------------------------------------------------- /EspressoShop.Web/EspressoShop.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/EspressoShop.Web.csproj -------------------------------------------------------------------------------- /EspressoShop.Web/Infrastructure/HeadersHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/Infrastructure/HeadersHelper.cs -------------------------------------------------------------------------------- /EspressoShop.Web/Models/ApplicationUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/Models/ApplicationUser.cs -------------------------------------------------------------------------------- /EspressoShop.Web/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /EspressoShop.Web/Models/LoginViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/Models/LoginViewModel.cs -------------------------------------------------------------------------------- /EspressoShop.Web/Models/ProductDetailsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/Models/ProductDetailsViewModel.cs -------------------------------------------------------------------------------- /EspressoShop.Web/Models/ProductViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/Models/ProductViewModel.cs -------------------------------------------------------------------------------- /EspressoShop.Web/Models/ReviewViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/Models/ReviewViewModel.cs -------------------------------------------------------------------------------- /EspressoShop.Web/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/Program.cs -------------------------------------------------------------------------------- /EspressoShop.Web/Services/IProductServiceClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/Services/IProductServiceClient.cs -------------------------------------------------------------------------------- /EspressoShop.Web/Services/IReviewsServiceClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/Services/IReviewsServiceClient.cs -------------------------------------------------------------------------------- /EspressoShop.Web/Services/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/Services/Product.cs -------------------------------------------------------------------------------- /EspressoShop.Web/Services/ProductServiceClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/Services/ProductServiceClient.cs -------------------------------------------------------------------------------- /EspressoShop.Web/Services/Review.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/Services/Review.cs -------------------------------------------------------------------------------- /EspressoShop.Web/Services/ReviewsServiceClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/Services/ReviewsServiceClient.cs -------------------------------------------------------------------------------- /EspressoShop.Web/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/Startup.cs -------------------------------------------------------------------------------- /EspressoShop.Web/Views/Account/login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/Views/Account/login.cshtml -------------------------------------------------------------------------------- /EspressoShop.Web/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/Views/Home/About.cshtml -------------------------------------------------------------------------------- /EspressoShop.Web/Views/Home/Contact.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/Views/Home/Contact.cshtml -------------------------------------------------------------------------------- /EspressoShop.Web/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /EspressoShop.Web/Views/Home/Privacy.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/Views/Home/Privacy.cshtml -------------------------------------------------------------------------------- /EspressoShop.Web/Views/Home/Product.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/Views/Home/Product.cshtml -------------------------------------------------------------------------------- /EspressoShop.Web/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /EspressoShop.Web/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /EspressoShop.Web/Views/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/Views/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /EspressoShop.Web/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /EspressoShop.Web/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /EspressoShop.Web/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /EspressoShop.Web/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/appsettings.Development.json -------------------------------------------------------------------------------- /EspressoShop.Web/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/appsettings.json -------------------------------------------------------------------------------- /EspressoShop.Web/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/bundleconfig.json -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/.gitignore -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/css/site.css -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/favicon.ico -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/images/banner1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/images/banner1.svg -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/images/banner2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/images/banner2.svg -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/images/banner3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/images/banner3.svg -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/images/cappuccino.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/images/cappuccino.jpg -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/images/espresso.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/images/espresso.jpg -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/images/flat white.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/images/flat white.jpg -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/images/latte.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/images/latte.jpg -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/images/macchiato.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/images/macchiato.jpg -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/images/piccolo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/images/piccolo.jpg -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/js/site.js -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/js/site.min.js: -------------------------------------------------------------------------------- 1 | //# sourceMappingURL=site.min.js.map -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/js/site.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/js/site.min.js.map -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/lib/bootstrap-4.2.1/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/lib/bootstrap-4.2.1/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/lib/bootstrap-4.2.1/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/lib/bootstrap-4.2.1/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/lib/bootstrap-4.2.1/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/lib/bootstrap-4.2.1/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/lib/bootstrap-4.2.1/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/lib/bootstrap-4.2.1/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/lib/bootstrap-4.2.1/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/lib/bootstrap-4.2.1/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/lib/bootstrap-4.2.1/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/lib/bootstrap-4.2.1/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/lib/bootstrap-4.2.1/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/lib/bootstrap-4.2.1/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/lib/bootstrap-4.2.1/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/lib/bootstrap-4.2.1/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/lib/bootstrap-4.2.1/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/lib/bootstrap-4.2.1/dist/css/bootstrap.css -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/lib/bootstrap-4.2.1/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/lib/bootstrap-4.2.1/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/lib/bootstrap-4.2.1/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/lib/bootstrap-4.2.1/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/lib/bootstrap-4.2.1/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/lib/bootstrap-4.2.1/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/lib/bootstrap-4.2.1/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/lib/bootstrap-4.2.1/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/lib/bootstrap-4.2.1/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/lib/bootstrap-4.2.1/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/lib/bootstrap-4.2.1/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/lib/bootstrap-4.2.1/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/lib/bootstrap-4.2.1/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/lib/bootstrap-4.2.1/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/lib/bootstrap-4.2.1/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/lib/bootstrap-4.2.1/dist/js/bootstrap.js -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/lib/bootstrap-4.2.1/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/lib/bootstrap-4.2.1/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/lib/bootstrap-4.2.1/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/lib/bootstrap-4.2.1/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/lib/bootstrap-4.2.1/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/lib/bootstrap-4.2.1/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/lib/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/lib/bootstrap/.bower.json -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/lib/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/lib/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/lib/jquery-validation-unobtrusive/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/lib/jquery-validation-unobtrusive/.bower.json -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/lib/jquery-validation/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/lib/jquery-validation/.bower.json -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /EspressoShop.Web/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.Web/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /EspressoShop.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/EspressoShop.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/README.md -------------------------------------------------------------------------------- /cleanall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/cleanall.sh -------------------------------------------------------------------------------- /get-reviews.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/get-reviews.sh -------------------------------------------------------------------------------- /istio/80-20.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/istio/80-20.yaml -------------------------------------------------------------------------------- /istio/all-destination-rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/istio/all-destination-rules.yaml -------------------------------------------------------------------------------- /istio/all-virtual-services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/istio/all-virtual-services.yaml -------------------------------------------------------------------------------- /istio/browser-based-routing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/istio/browser-based-routing.yaml -------------------------------------------------------------------------------- /istio/circuit-breaker.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/istio/circuit-breaker.yaml -------------------------------------------------------------------------------- /istio/delay.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/istio/delay.yaml -------------------------------------------------------------------------------- /istio/fault.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/istio/fault.yaml -------------------------------------------------------------------------------- /istio/gateway.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/istio/gateway.yaml -------------------------------------------------------------------------------- /istio/policy/mixer-rule-deny-label.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/istio/policy/mixer-rule-deny-label.yaml -------------------------------------------------------------------------------- /istio/security/tls-migration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/istio/security/tls-migration.yaml -------------------------------------------------------------------------------- /istio/timeout.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/istio/timeout.yaml -------------------------------------------------------------------------------- /istio/user-based-routing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/istio/user-based-routing.yaml -------------------------------------------------------------------------------- /kubernetes/espresso-shop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/kubernetes/espresso-shop.yaml -------------------------------------------------------------------------------- /reset-to-v1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hossambarakat/EspressoShop/HEAD/reset-to-v1.sh --------------------------------------------------------------------------------