├── Chapter04 └── Code │ ├── .gitignore │ ├── css │ ├── layout.css │ └── utils.css │ ├── index.html │ ├── package.json │ ├── scripts │ ├── index.js │ ├── product.js │ ├── repository.js │ ├── search.js │ ├── shopping-cart.js │ └── utils.js │ └── views │ ├── product.html │ ├── search.html │ └── shopping-cart.html ├── Chapter05 └── Code │ ├── .gitignore │ ├── css │ ├── layout.css │ └── utils.css │ ├── index.html │ ├── package.json │ ├── scripts │ ├── index.js │ ├── product.js │ ├── repository.js │ ├── search.js │ ├── shopping-cart.js │ └── utils.js │ ├── test │ ├── index.html │ ├── karma.conf.js │ ├── mocha-tests.js │ ├── protractor.conf.js │ ├── protractor.mocha.conf.js │ ├── selenium-mocha-tests.js │ ├── selenium-server-standalone-3.1.0.jar │ ├── selenium-tests.js │ └── spec │ │ └── test.js │ └── views │ ├── product.html │ ├── search.html │ └── shopping-cart.html ├── Chapter06 └── Code │ ├── .gitignore │ ├── css │ ├── layout.css │ └── utils.css │ ├── gulpfile.js │ ├── index.html │ ├── jshint.conf.json │ ├── minify.conf.js │ ├── package.json │ ├── scripts │ ├── index.js │ ├── product.js │ ├── repository.js │ ├── search.js │ ├── shopping-cart.js │ └── utils.js │ ├── test │ ├── index.html │ ├── karma.conf.js │ ├── karma.min.conf.js │ ├── mocha-tests.js │ ├── protractor.conf.js │ ├── protractor.mocha.conf.js │ ├── selenium-mocha-tests.js │ ├── selenium-server-standalone-3.1.0.jar │ ├── selenium-tests.js │ └── spec │ │ └── test.js │ └── views │ ├── product.html │ ├── search.html │ └── shopping-cart.html ├── Chapter07 └── Code │ ├── .gitignore │ ├── css │ ├── layout.css │ └── utils.css │ ├── gulpfile.js │ ├── index.html │ ├── jshint.conf.json │ ├── minify.conf.js │ ├── package.json │ ├── scripts │ ├── index.js │ ├── product.js │ ├── repository.js │ ├── search.js │ ├── shopping-cart.js │ └── utils.js │ ├── sonar-project.properties │ ├── test │ ├── index.html │ ├── karma.conf.js │ ├── karma.min.conf.js │ ├── mocha-tests.js │ ├── protractor.conf.js │ ├── protractor.mocha.conf.js │ ├── selenium-mocha-tests.js │ ├── selenium-server-standalone-3.1.0.jar │ ├── selenium-tests.js │ └── spec │ │ └── test.js │ └── views │ ├── product.html │ ├── search.html │ └── shopping-cart.html ├── Chapter08 └── Code │ ├── .gitignore │ ├── css │ ├── layout.css │ └── utils.css │ ├── gulpfile.js │ ├── index.js │ ├── jshint.conf.json │ ├── minify.conf.js │ ├── package.json │ ├── scripts │ ├── index.js │ ├── login.js │ ├── order.js │ ├── product.js │ ├── repository.js │ ├── search.js │ ├── shopping-cart.js │ └── utils.js │ ├── sonar-project.properties │ ├── test │ ├── index.html │ ├── karma.conf.js │ ├── karma.min.conf.js │ ├── protractor.conf.js │ ├── selenium-server-standalone-3.1.0.jar │ ├── selenium-tests.js │ └── spec │ │ ├── order-spec.js │ │ └── test.js │ └── views │ ├── index.ejs │ ├── login.ejs │ ├── navbar.ejs │ ├── product.ejs │ ├── search.ejs │ └── shopping-cart.ejs ├── Chapter09 └── Code │ ├── .gitignore │ ├── README.md │ ├── sonar-project.properties │ ├── web-shop-selenium │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── SeleniumTests.cs │ └── web-shop-selenium.csproj │ ├── web-shop-tests │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ ├── OpenCoverToCoberturaConverter.exe │ ├── OrderTests.cs │ ├── ReportGenerator │ │ ├── ICSharpCode.NRefactory.CSharp.dll │ │ ├── ICSharpCode.NRefactory.dll │ │ ├── LICENSE.txt │ │ ├── Readme.txt │ │ ├── ReportGenerator.Reporting.XML │ │ ├── ReportGenerator.Reporting.dll │ │ ├── ReportGenerator.XML │ │ ├── ReportGenerator.exe │ │ └── ReportGenerator.exe.config │ └── web-shop-tests.csproj │ └── web-shop │ ├── .bowerrc │ ├── .vscode │ ├── launch.json │ └── tasks.json │ ├── Controllers │ ├── HomeController.cs │ ├── LoginController.cs │ ├── ProductController.cs │ ├── SearchController.cs │ └── ShoppingCartController.cs │ ├── Database │ ├── Product.cs │ ├── ShoppingCart.cs │ ├── User.cs │ └── WebShopContext.cs │ ├── Invoicing │ ├── Order.cs │ └── OrderLine.cs │ ├── Models │ ├── LoginModel.cs │ └── ValueModel.cs │ ├── Program.cs │ ├── Startup.cs │ ├── Views │ ├── Home │ │ └── Index.cshtml │ ├── Login │ │ └── Index.cshtml │ ├── Product │ │ └── Index.cshtml │ ├── Search │ │ └── Index.cshtml │ ├── Shared │ │ ├── Error.cshtml │ │ └── _Layout.cshtml │ ├── ShoppingCart │ │ └── Index.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── bower.json │ ├── bundleconfig.json │ ├── gulpfile.js │ ├── package.json │ ├── sql │ ├── 01 - CREATE DATABASE.sql │ ├── 02 - CREATE TABLE public.product.sql │ ├── 03 - CREATE TABLE public.user.sql │ ├── 04 - CREATE TABLE public.shopping_cart.sql │ ├── 05 - INSERT data.sql │ └── 06 - CREATE OR REPLACE FUNCTION add_product_to_cart.sql │ ├── test │ └── sql │ │ └── test.sql │ ├── web-shop.csproj │ └── wwwroot │ ├── css │ ├── layout.css │ └── utils.css │ ├── favicon.ico │ └── js │ ├── index.js │ ├── login.js │ ├── order.js │ ├── product.js │ ├── repository.js │ ├── search.js │ ├── shopping-cart.js │ └── utils.js ├── Chapter10 └── Code │ └── Jenkinsfile ├── Chapter11 └── Code │ ├── Jenkinsfile │ ├── gulpfile.js │ └── sonar-project.properties ├── Chapter12 └── Code │ ├── .gitignore │ ├── index.js │ ├── package.json │ └── tests │ ├── Local.postman_environment.json │ └── Web API.postman_collection.json ├── Chapter13 └── Code │ ├── web-shop-csharp │ ├── .gitignore │ ├── Jenkinsfile (Development) │ ├── Jenkinsfile (master) │ ├── msxsl.exe │ ├── sonar-project.properties │ ├── trx-to-junit.xsl │ ├── web-shop-selenium │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── SeleniumTests.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ └── web-shop-selenium.csproj │ ├── web-shop-tests │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ └── tasks.json │ │ ├── OpenCoverToCoberturaConverter.exe │ │ ├── OrderTests.cs │ │ ├── ReportGenerator │ │ │ ├── ICSharpCode.NRefactory.CSharp.dll │ │ │ ├── ICSharpCode.NRefactory.dll │ │ │ ├── LICENSE.txt │ │ │ ├── Readme.txt │ │ │ ├── ReportGenerator.Reporting.XML │ │ │ ├── ReportGenerator.Reporting.dll │ │ │ ├── ReportGenerator.XML │ │ │ ├── ReportGenerator.exe │ │ │ └── ReportGenerator.exe.config │ │ └── web-shop-tests.csproj │ └── web-shop │ │ ├── .bowerrc │ │ ├── .vscode │ │ ├── launch.json │ │ └── tasks.json │ │ ├── Controllers │ │ ├── HomeController.cs │ │ ├── LoginController.cs │ │ ├── ProductController.cs │ │ ├── SearchController.cs │ │ └── ShoppingCartController.cs │ │ ├── Database │ │ ├── Product.cs │ │ ├── ShoppingCart.cs │ │ ├── User.cs │ │ └── WebShopContext.cs │ │ ├── Invoicing │ │ ├── Order.cs │ │ └── OrderLine.cs │ │ ├── Models │ │ ├── LoginModel.cs │ │ └── ValueModel.cs │ │ ├── Program.cs │ │ ├── Startup.cs │ │ ├── Views │ │ ├── Home │ │ │ └── Index.cshtml │ │ ├── Login │ │ │ └── Index.cshtml │ │ ├── Product │ │ │ └── Index.cshtml │ │ ├── Search │ │ │ └── Index.cshtml │ │ ├── Shared │ │ │ ├── Error.cshtml │ │ │ └── _Layout.cshtml │ │ ├── ShoppingCart │ │ │ └── Index.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml │ │ ├── appsettings.Development.json │ │ ├── appsettings.Production.json │ │ ├── appsettings.json │ │ ├── bower.json │ │ ├── bundleconfig.json │ │ ├── gulpfile.js │ │ ├── package.json │ │ ├── sql │ │ ├── 01 - CREATE DATABASE.sql │ │ ├── 02 - CREATE TABLE public.product.sql │ │ ├── 03 - CREATE TABLE public.user.sql │ │ ├── 04 - CREATE TABLE public.shopping_cart.sql │ │ ├── 05 - INSERT data.sql │ │ └── 06 - CREATE OR REPLACE FUNCTION add_product_to_cart.sql │ │ ├── test │ │ └── sql │ │ │ └── test.sql │ │ ├── web-shop.csproj │ │ └── wwwroot │ │ ├── css │ │ ├── layout.css │ │ └── utils.css │ │ ├── favicon.ico │ │ └── js │ │ ├── index.js │ │ ├── login.js │ │ ├── order.js │ │ ├── product.js │ │ ├── repository.js │ │ ├── search.js │ │ ├── shopping-cart.js │ │ └── utils.js │ └── web-shop-js │ ├── .gitignore │ ├── Jenkinsfile (Development) │ ├── Jenkinsfile (master) │ ├── config.development.js │ ├── config.production.js │ ├── css │ ├── layout.css │ └── utils.css │ ├── gulpfile.js │ ├── index.js │ ├── jshint.conf.json │ ├── minify.conf.js │ ├── package.json │ ├── scripts │ ├── index.js │ ├── login.js │ ├── order.js │ ├── product.js │ ├── repository.js │ ├── search.js │ ├── shopping-cart.js │ └── utils.js │ ├── sonar-project.properties │ ├── test │ ├── index.html │ ├── karma.conf.js │ ├── karma.min.conf.js │ ├── protractor.conf.js │ ├── selenium-server-standalone-3.1.0.jar │ ├── selenium-tests.js │ └── spec │ │ ├── order-spec.js │ │ └── test.js │ └── views │ ├── index.ejs │ ├── login.ejs │ ├── navbar.ejs │ ├── product.ejs │ ├── search.ejs │ └── shopping-cart.ejs ├── Chapter14 └── Code │ ├── Flyway demo │ ├── Migrations │ │ ├── V1_0__Create tables.sql │ │ └── V1_1__More tables.sql │ └── flyway.conf │ ├── web-shop-csharp │ └── Jenkinsfile (master) │ └── web-shop-js │ └── Jenkinsfile (master) ├── LICENSE ├── README.md └── WebDrivers ├── IEDriverServer.exe ├── MicrosoftWebDriver.exe ├── chromedriver.exe └── geckodriver.exe /Chapter04/Code/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/** 2 | -------------------------------------------------------------------------------- /Chapter04/Code/css/layout.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding-top: 70px; 3 | } -------------------------------------------------------------------------------- /Chapter04/Code/css/utils.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter04/Code/css/utils.css -------------------------------------------------------------------------------- /Chapter04/Code/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter04/Code/index.html -------------------------------------------------------------------------------- /Chapter04/Code/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter04/Code/package.json -------------------------------------------------------------------------------- /Chapter04/Code/scripts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter04/Code/scripts/index.js -------------------------------------------------------------------------------- /Chapter04/Code/scripts/product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter04/Code/scripts/product.js -------------------------------------------------------------------------------- /Chapter04/Code/scripts/repository.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter04/Code/scripts/repository.js -------------------------------------------------------------------------------- /Chapter04/Code/scripts/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter04/Code/scripts/search.js -------------------------------------------------------------------------------- /Chapter04/Code/scripts/shopping-cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter04/Code/scripts/shopping-cart.js -------------------------------------------------------------------------------- /Chapter04/Code/scripts/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter04/Code/scripts/utils.js -------------------------------------------------------------------------------- /Chapter04/Code/views/product.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter04/Code/views/product.html -------------------------------------------------------------------------------- /Chapter04/Code/views/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter04/Code/views/search.html -------------------------------------------------------------------------------- /Chapter04/Code/views/shopping-cart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter04/Code/views/shopping-cart.html -------------------------------------------------------------------------------- /Chapter05/Code/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter05/Code/.gitignore -------------------------------------------------------------------------------- /Chapter05/Code/css/layout.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding-top: 70px; 3 | } -------------------------------------------------------------------------------- /Chapter05/Code/css/utils.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter05/Code/css/utils.css -------------------------------------------------------------------------------- /Chapter05/Code/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter05/Code/index.html -------------------------------------------------------------------------------- /Chapter05/Code/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter05/Code/package.json -------------------------------------------------------------------------------- /Chapter05/Code/scripts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter05/Code/scripts/index.js -------------------------------------------------------------------------------- /Chapter05/Code/scripts/product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter05/Code/scripts/product.js -------------------------------------------------------------------------------- /Chapter05/Code/scripts/repository.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter05/Code/scripts/repository.js -------------------------------------------------------------------------------- /Chapter05/Code/scripts/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter05/Code/scripts/search.js -------------------------------------------------------------------------------- /Chapter05/Code/scripts/shopping-cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter05/Code/scripts/shopping-cart.js -------------------------------------------------------------------------------- /Chapter05/Code/scripts/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter05/Code/scripts/utils.js -------------------------------------------------------------------------------- /Chapter05/Code/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter05/Code/test/index.html -------------------------------------------------------------------------------- /Chapter05/Code/test/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter05/Code/test/karma.conf.js -------------------------------------------------------------------------------- /Chapter05/Code/test/mocha-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter05/Code/test/mocha-tests.js -------------------------------------------------------------------------------- /Chapter05/Code/test/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter05/Code/test/protractor.conf.js -------------------------------------------------------------------------------- /Chapter05/Code/test/protractor.mocha.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter05/Code/test/protractor.mocha.conf.js -------------------------------------------------------------------------------- /Chapter05/Code/test/selenium-mocha-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter05/Code/test/selenium-mocha-tests.js -------------------------------------------------------------------------------- /Chapter05/Code/test/selenium-server-standalone-3.1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter05/Code/test/selenium-server-standalone-3.1.0.jar -------------------------------------------------------------------------------- /Chapter05/Code/test/selenium-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter05/Code/test/selenium-tests.js -------------------------------------------------------------------------------- /Chapter05/Code/test/spec/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter05/Code/test/spec/test.js -------------------------------------------------------------------------------- /Chapter05/Code/views/product.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter05/Code/views/product.html -------------------------------------------------------------------------------- /Chapter05/Code/views/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter05/Code/views/search.html -------------------------------------------------------------------------------- /Chapter05/Code/views/shopping-cart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter05/Code/views/shopping-cart.html -------------------------------------------------------------------------------- /Chapter06/Code/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter06/Code/.gitignore -------------------------------------------------------------------------------- /Chapter06/Code/css/layout.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding-top: 70px; 3 | } -------------------------------------------------------------------------------- /Chapter06/Code/css/utils.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter06/Code/css/utils.css -------------------------------------------------------------------------------- /Chapter06/Code/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter06/Code/gulpfile.js -------------------------------------------------------------------------------- /Chapter06/Code/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter06/Code/index.html -------------------------------------------------------------------------------- /Chapter06/Code/jshint.conf.json: -------------------------------------------------------------------------------- 1 | { 2 | "eqnull": true 3 | } -------------------------------------------------------------------------------- /Chapter06/Code/minify.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter06/Code/minify.conf.js -------------------------------------------------------------------------------- /Chapter06/Code/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter06/Code/package.json -------------------------------------------------------------------------------- /Chapter06/Code/scripts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter06/Code/scripts/index.js -------------------------------------------------------------------------------- /Chapter06/Code/scripts/product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter06/Code/scripts/product.js -------------------------------------------------------------------------------- /Chapter06/Code/scripts/repository.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter06/Code/scripts/repository.js -------------------------------------------------------------------------------- /Chapter06/Code/scripts/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter06/Code/scripts/search.js -------------------------------------------------------------------------------- /Chapter06/Code/scripts/shopping-cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter06/Code/scripts/shopping-cart.js -------------------------------------------------------------------------------- /Chapter06/Code/scripts/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter06/Code/scripts/utils.js -------------------------------------------------------------------------------- /Chapter06/Code/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter06/Code/test/index.html -------------------------------------------------------------------------------- /Chapter06/Code/test/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter06/Code/test/karma.conf.js -------------------------------------------------------------------------------- /Chapter06/Code/test/karma.min.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter06/Code/test/karma.min.conf.js -------------------------------------------------------------------------------- /Chapter06/Code/test/mocha-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter06/Code/test/mocha-tests.js -------------------------------------------------------------------------------- /Chapter06/Code/test/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter06/Code/test/protractor.conf.js -------------------------------------------------------------------------------- /Chapter06/Code/test/protractor.mocha.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter06/Code/test/protractor.mocha.conf.js -------------------------------------------------------------------------------- /Chapter06/Code/test/selenium-mocha-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter06/Code/test/selenium-mocha-tests.js -------------------------------------------------------------------------------- /Chapter06/Code/test/selenium-server-standalone-3.1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter06/Code/test/selenium-server-standalone-3.1.0.jar -------------------------------------------------------------------------------- /Chapter06/Code/test/selenium-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter06/Code/test/selenium-tests.js -------------------------------------------------------------------------------- /Chapter06/Code/test/spec/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter06/Code/test/spec/test.js -------------------------------------------------------------------------------- /Chapter06/Code/views/product.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter06/Code/views/product.html -------------------------------------------------------------------------------- /Chapter06/Code/views/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter06/Code/views/search.html -------------------------------------------------------------------------------- /Chapter06/Code/views/shopping-cart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter06/Code/views/shopping-cart.html -------------------------------------------------------------------------------- /Chapter07/Code/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter07/Code/.gitignore -------------------------------------------------------------------------------- /Chapter07/Code/css/layout.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding-top: 70px; 3 | } -------------------------------------------------------------------------------- /Chapter07/Code/css/utils.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter07/Code/css/utils.css -------------------------------------------------------------------------------- /Chapter07/Code/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter07/Code/gulpfile.js -------------------------------------------------------------------------------- /Chapter07/Code/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter07/Code/index.html -------------------------------------------------------------------------------- /Chapter07/Code/jshint.conf.json: -------------------------------------------------------------------------------- 1 | { 2 | "eqnull": true 3 | } -------------------------------------------------------------------------------- /Chapter07/Code/minify.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter07/Code/minify.conf.js -------------------------------------------------------------------------------- /Chapter07/Code/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter07/Code/package.json -------------------------------------------------------------------------------- /Chapter07/Code/scripts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter07/Code/scripts/index.js -------------------------------------------------------------------------------- /Chapter07/Code/scripts/product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter07/Code/scripts/product.js -------------------------------------------------------------------------------- /Chapter07/Code/scripts/repository.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter07/Code/scripts/repository.js -------------------------------------------------------------------------------- /Chapter07/Code/scripts/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter07/Code/scripts/search.js -------------------------------------------------------------------------------- /Chapter07/Code/scripts/shopping-cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter07/Code/scripts/shopping-cart.js -------------------------------------------------------------------------------- /Chapter07/Code/scripts/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter07/Code/scripts/utils.js -------------------------------------------------------------------------------- /Chapter07/Code/sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter07/Code/sonar-project.properties -------------------------------------------------------------------------------- /Chapter07/Code/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter07/Code/test/index.html -------------------------------------------------------------------------------- /Chapter07/Code/test/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter07/Code/test/karma.conf.js -------------------------------------------------------------------------------- /Chapter07/Code/test/karma.min.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter07/Code/test/karma.min.conf.js -------------------------------------------------------------------------------- /Chapter07/Code/test/mocha-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter07/Code/test/mocha-tests.js -------------------------------------------------------------------------------- /Chapter07/Code/test/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter07/Code/test/protractor.conf.js -------------------------------------------------------------------------------- /Chapter07/Code/test/protractor.mocha.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter07/Code/test/protractor.mocha.conf.js -------------------------------------------------------------------------------- /Chapter07/Code/test/selenium-mocha-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter07/Code/test/selenium-mocha-tests.js -------------------------------------------------------------------------------- /Chapter07/Code/test/selenium-server-standalone-3.1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter07/Code/test/selenium-server-standalone-3.1.0.jar -------------------------------------------------------------------------------- /Chapter07/Code/test/selenium-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter07/Code/test/selenium-tests.js -------------------------------------------------------------------------------- /Chapter07/Code/test/spec/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter07/Code/test/spec/test.js -------------------------------------------------------------------------------- /Chapter07/Code/views/product.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter07/Code/views/product.html -------------------------------------------------------------------------------- /Chapter07/Code/views/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter07/Code/views/search.html -------------------------------------------------------------------------------- /Chapter07/Code/views/shopping-cart.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter07/Code/views/shopping-cart.html -------------------------------------------------------------------------------- /Chapter08/Code/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter08/Code/.gitignore -------------------------------------------------------------------------------- /Chapter08/Code/css/layout.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding-top: 70px; 3 | } 4 | -------------------------------------------------------------------------------- /Chapter08/Code/css/utils.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter08/Code/css/utils.css -------------------------------------------------------------------------------- /Chapter08/Code/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter08/Code/gulpfile.js -------------------------------------------------------------------------------- /Chapter08/Code/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter08/Code/index.js -------------------------------------------------------------------------------- /Chapter08/Code/jshint.conf.json: -------------------------------------------------------------------------------- 1 | { 2 | "eqnull": true 3 | } -------------------------------------------------------------------------------- /Chapter08/Code/minify.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter08/Code/minify.conf.js -------------------------------------------------------------------------------- /Chapter08/Code/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter08/Code/package.json -------------------------------------------------------------------------------- /Chapter08/Code/scripts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter08/Code/scripts/index.js -------------------------------------------------------------------------------- /Chapter08/Code/scripts/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter08/Code/scripts/login.js -------------------------------------------------------------------------------- /Chapter08/Code/scripts/order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter08/Code/scripts/order.js -------------------------------------------------------------------------------- /Chapter08/Code/scripts/product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter08/Code/scripts/product.js -------------------------------------------------------------------------------- /Chapter08/Code/scripts/repository.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter08/Code/scripts/repository.js -------------------------------------------------------------------------------- /Chapter08/Code/scripts/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter08/Code/scripts/search.js -------------------------------------------------------------------------------- /Chapter08/Code/scripts/shopping-cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter08/Code/scripts/shopping-cart.js -------------------------------------------------------------------------------- /Chapter08/Code/scripts/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter08/Code/scripts/utils.js -------------------------------------------------------------------------------- /Chapter08/Code/sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter08/Code/sonar-project.properties -------------------------------------------------------------------------------- /Chapter08/Code/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter08/Code/test/index.html -------------------------------------------------------------------------------- /Chapter08/Code/test/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter08/Code/test/karma.conf.js -------------------------------------------------------------------------------- /Chapter08/Code/test/karma.min.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter08/Code/test/karma.min.conf.js -------------------------------------------------------------------------------- /Chapter08/Code/test/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter08/Code/test/protractor.conf.js -------------------------------------------------------------------------------- /Chapter08/Code/test/selenium-server-standalone-3.1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter08/Code/test/selenium-server-standalone-3.1.0.jar -------------------------------------------------------------------------------- /Chapter08/Code/test/selenium-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter08/Code/test/selenium-tests.js -------------------------------------------------------------------------------- /Chapter08/Code/test/spec/order-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter08/Code/test/spec/order-spec.js -------------------------------------------------------------------------------- /Chapter08/Code/test/spec/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter08/Code/test/spec/test.js -------------------------------------------------------------------------------- /Chapter08/Code/views/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter08/Code/views/index.ejs -------------------------------------------------------------------------------- /Chapter08/Code/views/login.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter08/Code/views/login.ejs -------------------------------------------------------------------------------- /Chapter08/Code/views/navbar.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter08/Code/views/navbar.ejs -------------------------------------------------------------------------------- /Chapter08/Code/views/product.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter08/Code/views/product.ejs -------------------------------------------------------------------------------- /Chapter08/Code/views/search.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter08/Code/views/search.ejs -------------------------------------------------------------------------------- /Chapter08/Code/views/shopping-cart.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter08/Code/views/shopping-cart.ejs -------------------------------------------------------------------------------- /Chapter09/Code/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/.gitignore -------------------------------------------------------------------------------- /Chapter09/Code/README.md: -------------------------------------------------------------------------------- 1 | web-shop-csharp 2 | -------------------------------------------------------------------------------- /Chapter09/Code/sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/sonar-project.properties -------------------------------------------------------------------------------- /Chapter09/Code/web-shop-selenium/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop-selenium/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter09/Code/web-shop-selenium/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop-selenium/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter09/Code/web-shop-selenium/SeleniumTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop-selenium/SeleniumTests.cs -------------------------------------------------------------------------------- /Chapter09/Code/web-shop-selenium/web-shop-selenium.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop-selenium/web-shop-selenium.csproj -------------------------------------------------------------------------------- /Chapter09/Code/web-shop-tests/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop-tests/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter09/Code/web-shop-tests/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop-tests/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter09/Code/web-shop-tests/OpenCoverToCoberturaConverter.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop-tests/OpenCoverToCoberturaConverter.exe -------------------------------------------------------------------------------- /Chapter09/Code/web-shop-tests/OrderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop-tests/OrderTests.cs -------------------------------------------------------------------------------- /Chapter09/Code/web-shop-tests/ReportGenerator/ICSharpCode.NRefactory.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop-tests/ReportGenerator/ICSharpCode.NRefactory.CSharp.dll -------------------------------------------------------------------------------- /Chapter09/Code/web-shop-tests/ReportGenerator/ICSharpCode.NRefactory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop-tests/ReportGenerator/ICSharpCode.NRefactory.dll -------------------------------------------------------------------------------- /Chapter09/Code/web-shop-tests/ReportGenerator/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop-tests/ReportGenerator/LICENSE.txt -------------------------------------------------------------------------------- /Chapter09/Code/web-shop-tests/ReportGenerator/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop-tests/ReportGenerator/Readme.txt -------------------------------------------------------------------------------- /Chapter09/Code/web-shop-tests/ReportGenerator/ReportGenerator.Reporting.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop-tests/ReportGenerator/ReportGenerator.Reporting.XML -------------------------------------------------------------------------------- /Chapter09/Code/web-shop-tests/ReportGenerator/ReportGenerator.Reporting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop-tests/ReportGenerator/ReportGenerator.Reporting.dll -------------------------------------------------------------------------------- /Chapter09/Code/web-shop-tests/ReportGenerator/ReportGenerator.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop-tests/ReportGenerator/ReportGenerator.XML -------------------------------------------------------------------------------- /Chapter09/Code/web-shop-tests/ReportGenerator/ReportGenerator.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop-tests/ReportGenerator/ReportGenerator.exe -------------------------------------------------------------------------------- /Chapter09/Code/web-shop-tests/ReportGenerator/ReportGenerator.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop-tests/ReportGenerator/ReportGenerator.exe.config -------------------------------------------------------------------------------- /Chapter09/Code/web-shop-tests/web-shop-tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop-tests/web-shop-tests.csproj -------------------------------------------------------------------------------- /Chapter09/Code/web-shop/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter09/Code/web-shop/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter09/Code/web-shop/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter09/Code/web-shop/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Chapter09/Code/web-shop/Controllers/LoginController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop/Controllers/LoginController.cs -------------------------------------------------------------------------------- /Chapter09/Code/web-shop/Controllers/ProductController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop/Controllers/ProductController.cs -------------------------------------------------------------------------------- /Chapter09/Code/web-shop/Controllers/SearchController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop/Controllers/SearchController.cs -------------------------------------------------------------------------------- /Chapter09/Code/web-shop/Controllers/ShoppingCartController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop/Controllers/ShoppingCartController.cs -------------------------------------------------------------------------------- /Chapter09/Code/web-shop/Database/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop/Database/Product.cs -------------------------------------------------------------------------------- /Chapter09/Code/web-shop/Database/ShoppingCart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop/Database/ShoppingCart.cs -------------------------------------------------------------------------------- /Chapter09/Code/web-shop/Database/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop/Database/User.cs -------------------------------------------------------------------------------- /Chapter09/Code/web-shop/Database/WebShopContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop/Database/WebShopContext.cs -------------------------------------------------------------------------------- /Chapter09/Code/web-shop/Invoicing/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop/Invoicing/Order.cs -------------------------------------------------------------------------------- /Chapter09/Code/web-shop/Invoicing/OrderLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop/Invoicing/OrderLine.cs -------------------------------------------------------------------------------- /Chapter09/Code/web-shop/Models/LoginModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop/Models/LoginModel.cs -------------------------------------------------------------------------------- /Chapter09/Code/web-shop/Models/ValueModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop/Models/ValueModel.cs -------------------------------------------------------------------------------- /Chapter09/Code/web-shop/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop/Program.cs -------------------------------------------------------------------------------- /Chapter09/Code/web-shop/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop/Startup.cs -------------------------------------------------------------------------------- /Chapter09/Code/web-shop/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Chapter09/Code/web-shop/Views/Login/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop/Views/Login/Index.cshtml -------------------------------------------------------------------------------- /Chapter09/Code/web-shop/Views/Product/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop/Views/Product/Index.cshtml -------------------------------------------------------------------------------- /Chapter09/Code/web-shop/Views/Search/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop/Views/Search/Index.cshtml -------------------------------------------------------------------------------- /Chapter09/Code/web-shop/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Chapter09/Code/web-shop/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Chapter09/Code/web-shop/Views/ShoppingCart/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop/Views/ShoppingCart/Index.cshtml -------------------------------------------------------------------------------- /Chapter09/Code/web-shop/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Chapter09/Code/web-shop/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Chapter09/Code/web-shop/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter09/Code/web-shop/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop/appsettings.json -------------------------------------------------------------------------------- /Chapter09/Code/web-shop/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop/bower.json -------------------------------------------------------------------------------- /Chapter09/Code/web-shop/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop/bundleconfig.json -------------------------------------------------------------------------------- /Chapter09/Code/web-shop/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop/gulpfile.js -------------------------------------------------------------------------------- /Chapter09/Code/web-shop/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop/package.json -------------------------------------------------------------------------------- /Chapter09/Code/web-shop/sql/01 - CREATE DATABASE.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop/sql/01 - CREATE DATABASE.sql -------------------------------------------------------------------------------- /Chapter09/Code/web-shop/sql/02 - CREATE TABLE public.product.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop/sql/02 - CREATE TABLE public.product.sql -------------------------------------------------------------------------------- /Chapter09/Code/web-shop/sql/03 - CREATE TABLE public.user.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop/sql/03 - CREATE TABLE public.user.sql -------------------------------------------------------------------------------- /Chapter09/Code/web-shop/sql/04 - CREATE TABLE public.shopping_cart.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop/sql/04 - CREATE TABLE public.shopping_cart.sql -------------------------------------------------------------------------------- /Chapter09/Code/web-shop/sql/05 - INSERT data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop/sql/05 - INSERT data.sql -------------------------------------------------------------------------------- /Chapter09/Code/web-shop/sql/06 - CREATE OR REPLACE FUNCTION add_product_to_cart.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop/sql/06 - CREATE OR REPLACE FUNCTION add_product_to_cart.sql -------------------------------------------------------------------------------- /Chapter09/Code/web-shop/test/sql/test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop/test/sql/test.sql -------------------------------------------------------------------------------- /Chapter09/Code/web-shop/web-shop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop/web-shop.csproj -------------------------------------------------------------------------------- /Chapter09/Code/web-shop/wwwroot/css/layout.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding-top: 70px; 3 | } 4 | -------------------------------------------------------------------------------- /Chapter09/Code/web-shop/wwwroot/css/utils.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop/wwwroot/css/utils.css -------------------------------------------------------------------------------- /Chapter09/Code/web-shop/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Chapter09/Code/web-shop/wwwroot/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop/wwwroot/js/index.js -------------------------------------------------------------------------------- /Chapter09/Code/web-shop/wwwroot/js/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop/wwwroot/js/login.js -------------------------------------------------------------------------------- /Chapter09/Code/web-shop/wwwroot/js/order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop/wwwroot/js/order.js -------------------------------------------------------------------------------- /Chapter09/Code/web-shop/wwwroot/js/product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop/wwwroot/js/product.js -------------------------------------------------------------------------------- /Chapter09/Code/web-shop/wwwroot/js/repository.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop/wwwroot/js/repository.js -------------------------------------------------------------------------------- /Chapter09/Code/web-shop/wwwroot/js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop/wwwroot/js/search.js -------------------------------------------------------------------------------- /Chapter09/Code/web-shop/wwwroot/js/shopping-cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop/wwwroot/js/shopping-cart.js -------------------------------------------------------------------------------- /Chapter09/Code/web-shop/wwwroot/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter09/Code/web-shop/wwwroot/js/utils.js -------------------------------------------------------------------------------- /Chapter10/Code/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter10/Code/Jenkinsfile -------------------------------------------------------------------------------- /Chapter11/Code/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter11/Code/Jenkinsfile -------------------------------------------------------------------------------- /Chapter11/Code/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter11/Code/gulpfile.js -------------------------------------------------------------------------------- /Chapter11/Code/sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter11/Code/sonar-project.properties -------------------------------------------------------------------------------- /Chapter12/Code/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/** 2 | **/PostmanResults.xml -------------------------------------------------------------------------------- /Chapter12/Code/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter12/Code/index.js -------------------------------------------------------------------------------- /Chapter12/Code/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter12/Code/package.json -------------------------------------------------------------------------------- /Chapter12/Code/tests/Local.postman_environment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter12/Code/tests/Local.postman_environment.json -------------------------------------------------------------------------------- /Chapter12/Code/tests/Web API.postman_collection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter12/Code/tests/Web API.postman_collection.json -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/.gitignore -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/Jenkinsfile (Development): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/Jenkinsfile (Development) -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/Jenkinsfile (master): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/Jenkinsfile (master) -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/msxsl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/msxsl.exe -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/sonar-project.properties -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/trx-to-junit.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/trx-to-junit.xsl -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop-selenium/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop-selenium/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop-selenium/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop-selenium/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop-selenium/SeleniumTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop-selenium/SeleniumTests.cs -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop-selenium/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop-selenium/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop-selenium/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop-selenium/appsettings.json -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop-selenium/web-shop-selenium.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop-selenium/web-shop-selenium.csproj -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop-tests/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop-tests/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop-tests/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop-tests/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop-tests/OpenCoverToCoberturaConverter.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop-tests/OpenCoverToCoberturaConverter.exe -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop-tests/OrderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop-tests/OrderTests.cs -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop-tests/ReportGenerator/ICSharpCode.NRefactory.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop-tests/ReportGenerator/ICSharpCode.NRefactory.CSharp.dll -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop-tests/ReportGenerator/ICSharpCode.NRefactory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop-tests/ReportGenerator/ICSharpCode.NRefactory.dll -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop-tests/ReportGenerator/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop-tests/ReportGenerator/LICENSE.txt -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop-tests/ReportGenerator/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop-tests/ReportGenerator/Readme.txt -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop-tests/ReportGenerator/ReportGenerator.Reporting.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop-tests/ReportGenerator/ReportGenerator.Reporting.XML -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop-tests/ReportGenerator/ReportGenerator.Reporting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop-tests/ReportGenerator/ReportGenerator.Reporting.dll -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop-tests/ReportGenerator/ReportGenerator.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop-tests/ReportGenerator/ReportGenerator.XML -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop-tests/ReportGenerator/ReportGenerator.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop-tests/ReportGenerator/ReportGenerator.exe -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop-tests/ReportGenerator/ReportGenerator.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop-tests/ReportGenerator/ReportGenerator.exe.config -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop-tests/web-shop-tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop-tests/web-shop-tests.csproj -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop/.vscode/launch.json -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop/.vscode/tasks.json -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop/Controllers/HomeController.cs -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/Controllers/LoginController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop/Controllers/LoginController.cs -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/Controllers/ProductController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop/Controllers/ProductController.cs -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/Controllers/SearchController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop/Controllers/SearchController.cs -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/Controllers/ShoppingCartController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop/Controllers/ShoppingCartController.cs -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/Database/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop/Database/Product.cs -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/Database/ShoppingCart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop/Database/ShoppingCart.cs -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/Database/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop/Database/User.cs -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/Database/WebShopContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop/Database/WebShopContext.cs -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/Invoicing/Order.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop/Invoicing/Order.cs -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/Invoicing/OrderLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop/Invoicing/OrderLine.cs -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/Models/LoginModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop/Models/LoginModel.cs -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/Models/ValueModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop/Models/ValueModel.cs -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop/Program.cs -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop/Startup.cs -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/Views/Login/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop/Views/Login/Index.cshtml -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/Views/Product/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop/Views/Product/Index.cshtml -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/Views/Search/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop/Views/Search/Index.cshtml -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/Views/ShoppingCart/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop/Views/ShoppingCart/Index.cshtml -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop/appsettings.Development.json -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/appsettings.Production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop/appsettings.Production.json -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop/appsettings.json -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop/bower.json -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/bundleconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop/bundleconfig.json -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop/gulpfile.js -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop/package.json -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/sql/01 - CREATE DATABASE.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop/sql/01 - CREATE DATABASE.sql -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/sql/02 - CREATE TABLE public.product.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop/sql/02 - CREATE TABLE public.product.sql -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/sql/03 - CREATE TABLE public.user.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop/sql/03 - CREATE TABLE public.user.sql -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/sql/04 - CREATE TABLE public.shopping_cart.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop/sql/04 - CREATE TABLE public.shopping_cart.sql -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/sql/05 - INSERT data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop/sql/05 - INSERT data.sql -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/sql/06 - CREATE OR REPLACE FUNCTION add_product_to_cart.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop/sql/06 - CREATE OR REPLACE FUNCTION add_product_to_cart.sql -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/test/sql/test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop/test/sql/test.sql -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/web-shop.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop/web-shop.csproj -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/wwwroot/css/layout.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding-top: 70px; 3 | } 4 | -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/wwwroot/css/utils.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop/wwwroot/css/utils.css -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop/wwwroot/favicon.ico -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/wwwroot/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop/wwwroot/js/index.js -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/wwwroot/js/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop/wwwroot/js/login.js -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/wwwroot/js/order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop/wwwroot/js/order.js -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/wwwroot/js/product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop/wwwroot/js/product.js -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/wwwroot/js/repository.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop/wwwroot/js/repository.js -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/wwwroot/js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop/wwwroot/js/search.js -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/wwwroot/js/shopping-cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop/wwwroot/js/shopping-cart.js -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-csharp/web-shop/wwwroot/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-csharp/web-shop/wwwroot/js/utils.js -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-js/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-js/.gitignore -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-js/Jenkinsfile (Development): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-js/Jenkinsfile (Development) -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-js/Jenkinsfile (master): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-js/Jenkinsfile (master) -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-js/config.development.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-js/config.development.js -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-js/config.production.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-js/config.production.js -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-js/css/layout.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding-top: 70px; 3 | } 4 | -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-js/css/utils.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-js/css/utils.css -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-js/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-js/gulpfile.js -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-js/index.js -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-js/jshint.conf.json: -------------------------------------------------------------------------------- 1 | { 2 | "eqnull": true 3 | } -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-js/minify.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-js/minify.conf.js -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-js/package.json -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-js/scripts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-js/scripts/index.js -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-js/scripts/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-js/scripts/login.js -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-js/scripts/order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-js/scripts/order.js -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-js/scripts/product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-js/scripts/product.js -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-js/scripts/repository.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-js/scripts/repository.js -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-js/scripts/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-js/scripts/search.js -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-js/scripts/shopping-cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-js/scripts/shopping-cart.js -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-js/scripts/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-js/scripts/utils.js -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-js/sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-js/sonar-project.properties -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-js/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-js/test/index.html -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-js/test/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-js/test/karma.conf.js -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-js/test/karma.min.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-js/test/karma.min.conf.js -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-js/test/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-js/test/protractor.conf.js -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-js/test/selenium-server-standalone-3.1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-js/test/selenium-server-standalone-3.1.0.jar -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-js/test/selenium-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-js/test/selenium-tests.js -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-js/test/spec/order-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-js/test/spec/order-spec.js -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-js/test/spec/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-js/test/spec/test.js -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-js/views/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-js/views/index.ejs -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-js/views/login.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-js/views/login.ejs -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-js/views/navbar.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-js/views/navbar.ejs -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-js/views/product.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-js/views/product.ejs -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-js/views/search.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-js/views/search.ejs -------------------------------------------------------------------------------- /Chapter13/Code/web-shop-js/views/shopping-cart.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter13/Code/web-shop-js/views/shopping-cart.ejs -------------------------------------------------------------------------------- /Chapter14/Code/Flyway demo/Migrations/V1_0__Create tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter14/Code/Flyway demo/Migrations/V1_0__Create tables.sql -------------------------------------------------------------------------------- /Chapter14/Code/Flyway demo/Migrations/V1_1__More tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter14/Code/Flyway demo/Migrations/V1_1__More tables.sql -------------------------------------------------------------------------------- /Chapter14/Code/Flyway demo/flyway.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter14/Code/Flyway demo/flyway.conf -------------------------------------------------------------------------------- /Chapter14/Code/web-shop-csharp/Jenkinsfile (master): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter14/Code/web-shop-csharp/Jenkinsfile (master) -------------------------------------------------------------------------------- /Chapter14/Code/web-shop-js/Jenkinsfile (master): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/Chapter14/Code/web-shop-js/Jenkinsfile (master) -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/README.md -------------------------------------------------------------------------------- /WebDrivers/IEDriverServer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/WebDrivers/IEDriverServer.exe -------------------------------------------------------------------------------- /WebDrivers/MicrosoftWebDriver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/WebDrivers/MicrosoftWebDriver.exe -------------------------------------------------------------------------------- /WebDrivers/chromedriver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/WebDrivers/chromedriver.exe -------------------------------------------------------------------------------- /WebDrivers/geckodriver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Continuous-Integration-Delivery-and-Deployment/HEAD/WebDrivers/geckodriver.exe --------------------------------------------------------------------------------