├── .gitattributes ├── .gitignore ├── .gitlab-ci.yml ├── MicroService.AutoDevOpsPipeLines.sln ├── README.md ├── devops.jpg ├── devops.pipeline.jpg ├── devops ├── PipeLines │ ├── AutoScaling.sh │ ├── Build.sh │ ├── Creation │ │ ├── 001_CI.sh │ │ ├── 002_CreateConfig.sh │ │ ├── 003_ReleaseMajor.sh │ │ ├── Creation_Pipeline.sh │ │ ├── Gateways │ │ │ └── Kong │ │ │ │ └── 004_CreateGatewayRoute.sh │ │ └── README.md │ ├── Functions.common.sh │ ├── Functions.config.sh │ ├── Functions.core.sh │ ├── Functions.deploy.sh │ ├── RollBack.sh │ └── Updating │ │ ├── 001_AnalysingGitChanges.sh │ │ ├── 002_SyncConfig.sh │ │ ├── 003_CI.sh │ │ ├── 004_CD.sh │ │ ├── 005_IsK8sReady.sh │ │ ├── 006_Testing.sh │ │ └── 007_CleanK8s.sh ├── app.props ├── branch.env.props ├── deploy.production.props ├── deploy.props ├── deploy.staging.props └── version.props ├── global.json ├── k8s └── helm │ └── AutoDevOpsPipeLinesCharts │ ├── Chart.yaml │ ├── README.md │ ├── light.md │ ├── templates │ ├── deployments.yml │ └── services.yml │ └── values.yml ├── src ├── BuildingBlocks │ └── Extensions │ │ └── MvcExtensions │ │ ├── GlobalRouteConvention.cs │ │ ├── MvcExtensions.csproj │ │ └── ServiceCollectionExtensions.cs └── Services │ ├── Basket │ └── Basket.API │ │ ├── Basket.API.csproj │ │ ├── Controllers │ │ └── ValuesController.cs │ │ ├── Dockerfile │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.Production.json │ │ ├── appsettings.Staging.json │ │ └── appsettings.json │ ├── Catalog │ └── Catalog.API │ │ ├── Catalog.API.csproj │ │ ├── Controllers │ │ └── ValuesController.cs │ │ ├── Dockerfile │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.Production.json │ │ ├── appsettings.Staging.json │ │ └── appsettings.json │ ├── Identity │ └── Identity.API │ │ ├── Controllers │ │ └── ValuesController.cs │ │ ├── Dockerfile │ │ ├── Identity.API.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.Production.json │ │ ├── appsettings.Staging.json │ │ └── appsettings.json │ ├── Marketing │ └── Marketing.API │ │ ├── Controllers │ │ └── ValuesController.cs │ │ ├── Dockerfile │ │ ├── Marketing.API.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.Production.json │ │ ├── appsettings.Staging.json │ │ └── appsettings.json │ ├── Ordering │ └── Ordering.API │ │ ├── Controllers │ │ └── ValuesController.cs │ │ ├── Dockerfile │ │ ├── Ordering.API.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.Production.json │ │ ├── appsettings.Staging.json │ │ └── appsettings.json │ ├── Payment │ └── Payment.API │ │ ├── Controllers │ │ └── ValuesController.cs │ │ ├── Dockerfile │ │ ├── Payment.API.csproj │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── Startup.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.Production.json │ │ ├── appsettings.Staging.json │ │ └── appsettings.json │ └── Searching │ └── Searching.Api │ ├── Controllers │ └── ValuesController.cs │ ├── Dockerfile │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Searching.Api.csproj │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.Production.json │ ├── appsettings.Staging.json │ └── appsettings.json └── test └── ServicesTests └── IntegrationTest ├── IntegrationTest.csproj └── UnitTest1.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /MicroService.AutoDevOpsPipeLines.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/MicroService.AutoDevOpsPipeLines.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/README.md -------------------------------------------------------------------------------- /devops.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/devops.jpg -------------------------------------------------------------------------------- /devops.pipeline.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/devops.pipeline.jpg -------------------------------------------------------------------------------- /devops/PipeLines/AutoScaling.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/devops/PipeLines/AutoScaling.sh -------------------------------------------------------------------------------- /devops/PipeLines/Build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/devops/PipeLines/Build.sh -------------------------------------------------------------------------------- /devops/PipeLines/Creation/001_CI.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/devops/PipeLines/Creation/001_CI.sh -------------------------------------------------------------------------------- /devops/PipeLines/Creation/002_CreateConfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/devops/PipeLines/Creation/002_CreateConfig.sh -------------------------------------------------------------------------------- /devops/PipeLines/Creation/003_ReleaseMajor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/devops/PipeLines/Creation/003_ReleaseMajor.sh -------------------------------------------------------------------------------- /devops/PipeLines/Creation/Creation_Pipeline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/devops/PipeLines/Creation/Creation_Pipeline.sh -------------------------------------------------------------------------------- /devops/PipeLines/Creation/Gateways/Kong/004_CreateGatewayRoute.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/devops/PipeLines/Creation/Gateways/Kong/004_CreateGatewayRoute.sh -------------------------------------------------------------------------------- /devops/PipeLines/Creation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/devops/PipeLines/Creation/README.md -------------------------------------------------------------------------------- /devops/PipeLines/Functions.common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/devops/PipeLines/Functions.common.sh -------------------------------------------------------------------------------- /devops/PipeLines/Functions.config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/devops/PipeLines/Functions.config.sh -------------------------------------------------------------------------------- /devops/PipeLines/Functions.core.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/devops/PipeLines/Functions.core.sh -------------------------------------------------------------------------------- /devops/PipeLines/Functions.deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/devops/PipeLines/Functions.deploy.sh -------------------------------------------------------------------------------- /devops/PipeLines/RollBack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/devops/PipeLines/RollBack.sh -------------------------------------------------------------------------------- /devops/PipeLines/Updating/001_AnalysingGitChanges.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/devops/PipeLines/Updating/001_AnalysingGitChanges.sh -------------------------------------------------------------------------------- /devops/PipeLines/Updating/002_SyncConfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/devops/PipeLines/Updating/002_SyncConfig.sh -------------------------------------------------------------------------------- /devops/PipeLines/Updating/003_CI.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/devops/PipeLines/Updating/003_CI.sh -------------------------------------------------------------------------------- /devops/PipeLines/Updating/004_CD.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/devops/PipeLines/Updating/004_CD.sh -------------------------------------------------------------------------------- /devops/PipeLines/Updating/005_IsK8sReady.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/devops/PipeLines/Updating/005_IsK8sReady.sh -------------------------------------------------------------------------------- /devops/PipeLines/Updating/006_Testing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/devops/PipeLines/Updating/006_Testing.sh -------------------------------------------------------------------------------- /devops/PipeLines/Updating/007_CleanK8s.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/devops/PipeLines/Updating/007_CleanK8s.sh -------------------------------------------------------------------------------- /devops/app.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/devops/app.props -------------------------------------------------------------------------------- /devops/branch.env.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/devops/branch.env.props -------------------------------------------------------------------------------- /devops/deploy.production.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/devops/deploy.production.props -------------------------------------------------------------------------------- /devops/deploy.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/devops/deploy.props -------------------------------------------------------------------------------- /devops/deploy.staging.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/devops/deploy.staging.props -------------------------------------------------------------------------------- /devops/version.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/devops/version.props -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/global.json -------------------------------------------------------------------------------- /k8s/helm/AutoDevOpsPipeLinesCharts/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/k8s/helm/AutoDevOpsPipeLinesCharts/Chart.yaml -------------------------------------------------------------------------------- /k8s/helm/AutoDevOpsPipeLinesCharts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/k8s/helm/AutoDevOpsPipeLinesCharts/README.md -------------------------------------------------------------------------------- /k8s/helm/AutoDevOpsPipeLinesCharts/light.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/k8s/helm/AutoDevOpsPipeLinesCharts/light.md -------------------------------------------------------------------------------- /k8s/helm/AutoDevOpsPipeLinesCharts/templates/deployments.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/k8s/helm/AutoDevOpsPipeLinesCharts/templates/deployments.yml -------------------------------------------------------------------------------- /k8s/helm/AutoDevOpsPipeLinesCharts/templates/services.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/k8s/helm/AutoDevOpsPipeLinesCharts/templates/services.yml -------------------------------------------------------------------------------- /k8s/helm/AutoDevOpsPipeLinesCharts/values.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/k8s/helm/AutoDevOpsPipeLinesCharts/values.yml -------------------------------------------------------------------------------- /src/BuildingBlocks/Extensions/MvcExtensions/GlobalRouteConvention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/BuildingBlocks/Extensions/MvcExtensions/GlobalRouteConvention.cs -------------------------------------------------------------------------------- /src/BuildingBlocks/Extensions/MvcExtensions/MvcExtensions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/BuildingBlocks/Extensions/MvcExtensions/MvcExtensions.csproj -------------------------------------------------------------------------------- /src/BuildingBlocks/Extensions/MvcExtensions/ServiceCollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/BuildingBlocks/Extensions/MvcExtensions/ServiceCollectionExtensions.cs -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/Basket.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Basket/Basket.API/Basket.API.csproj -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Basket/Basket.API/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Basket/Basket.API/Dockerfile -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Basket/Basket.API/Program.cs -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Basket/Basket.API/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Basket/Basket.API/Startup.cs -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Basket/Basket.API/appsettings.Development.json -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/appsettings.Production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Basket/Basket.API/appsettings.Production.json -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/appsettings.Staging.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Basket/Basket.API/appsettings.Staging.json -------------------------------------------------------------------------------- /src/Services/Basket/Basket.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Basket/Basket.API/appsettings.json -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Catalog.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Catalog/Catalog.API/Catalog.API.csproj -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Catalog/Catalog.API/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Catalog/Catalog.API/Dockerfile -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Catalog/Catalog.API/Program.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Catalog/Catalog.API/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Catalog/Catalog.API/Startup.cs -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Catalog/Catalog.API/appsettings.Development.json -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/appsettings.Production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Catalog/Catalog.API/appsettings.Production.json -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/appsettings.Staging.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Catalog/Catalog.API/appsettings.Staging.json -------------------------------------------------------------------------------- /src/Services/Catalog/Catalog.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Catalog/Catalog.API/appsettings.json -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Identity/Identity.API/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Identity/Identity.API/Dockerfile -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Identity.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Identity/Identity.API/Identity.API.csproj -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Identity/Identity.API/Program.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Identity/Identity.API/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Identity/Identity.API/Startup.cs -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Identity/Identity.API/appsettings.Development.json -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/appsettings.Production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Identity/Identity.API/appsettings.Production.json -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/appsettings.Staging.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Identity/Identity.API/appsettings.Staging.json -------------------------------------------------------------------------------- /src/Services/Identity/Identity.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Identity/Identity.API/appsettings.json -------------------------------------------------------------------------------- /src/Services/Marketing/Marketing.API/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Marketing/Marketing.API/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /src/Services/Marketing/Marketing.API/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Marketing/Marketing.API/Dockerfile -------------------------------------------------------------------------------- /src/Services/Marketing/Marketing.API/Marketing.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Marketing/Marketing.API/Marketing.API.csproj -------------------------------------------------------------------------------- /src/Services/Marketing/Marketing.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Marketing/Marketing.API/Program.cs -------------------------------------------------------------------------------- /src/Services/Marketing/Marketing.API/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Marketing/Marketing.API/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Services/Marketing/Marketing.API/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Marketing/Marketing.API/Startup.cs -------------------------------------------------------------------------------- /src/Services/Marketing/Marketing.API/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Marketing/Marketing.API/appsettings.Development.json -------------------------------------------------------------------------------- /src/Services/Marketing/Marketing.API/appsettings.Production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Marketing/Marketing.API/appsettings.Production.json -------------------------------------------------------------------------------- /src/Services/Marketing/Marketing.API/appsettings.Staging.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Marketing/Marketing.API/appsettings.Staging.json -------------------------------------------------------------------------------- /src/Services/Marketing/Marketing.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Marketing/Marketing.API/appsettings.json -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Ordering/Ordering.API/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Ordering/Ordering.API/Dockerfile -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/Ordering.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Ordering/Ordering.API/Ordering.API.csproj -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Ordering/Ordering.API/Program.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Ordering/Ordering.API/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Ordering/Ordering.API/Startup.cs -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Ordering/Ordering.API/appsettings.Development.json -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/appsettings.Production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Ordering/Ordering.API/appsettings.Production.json -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/appsettings.Staging.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Ordering/Ordering.API/appsettings.Staging.json -------------------------------------------------------------------------------- /src/Services/Ordering/Ordering.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Ordering/Ordering.API/appsettings.json -------------------------------------------------------------------------------- /src/Services/Payment/Payment.API/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Payment/Payment.API/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /src/Services/Payment/Payment.API/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Payment/Payment.API/Dockerfile -------------------------------------------------------------------------------- /src/Services/Payment/Payment.API/Payment.API.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Payment/Payment.API/Payment.API.csproj -------------------------------------------------------------------------------- /src/Services/Payment/Payment.API/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Payment/Payment.API/Program.cs -------------------------------------------------------------------------------- /src/Services/Payment/Payment.API/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Payment/Payment.API/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Services/Payment/Payment.API/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Payment/Payment.API/Startup.cs -------------------------------------------------------------------------------- /src/Services/Payment/Payment.API/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Payment/Payment.API/appsettings.Development.json -------------------------------------------------------------------------------- /src/Services/Payment/Payment.API/appsettings.Production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Payment/Payment.API/appsettings.Production.json -------------------------------------------------------------------------------- /src/Services/Payment/Payment.API/appsettings.Staging.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Payment/Payment.API/appsettings.Staging.json -------------------------------------------------------------------------------- /src/Services/Payment/Payment.API/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Payment/Payment.API/appsettings.json -------------------------------------------------------------------------------- /src/Services/Searching/Searching.Api/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Searching/Searching.Api/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /src/Services/Searching/Searching.Api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Searching/Searching.Api/Dockerfile -------------------------------------------------------------------------------- /src/Services/Searching/Searching.Api/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Searching/Searching.Api/Program.cs -------------------------------------------------------------------------------- /src/Services/Searching/Searching.Api/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Searching/Searching.Api/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Services/Searching/Searching.Api/Searching.Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Searching/Searching.Api/Searching.Api.csproj -------------------------------------------------------------------------------- /src/Services/Searching/Searching.Api/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Searching/Searching.Api/Startup.cs -------------------------------------------------------------------------------- /src/Services/Searching/Searching.Api/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Searching/Searching.Api/appsettings.Development.json -------------------------------------------------------------------------------- /src/Services/Searching/Searching.Api/appsettings.Production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Searching/Searching.Api/appsettings.Production.json -------------------------------------------------------------------------------- /src/Services/Searching/Searching.Api/appsettings.Staging.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Searching/Searching.Api/appsettings.Staging.json -------------------------------------------------------------------------------- /src/Services/Searching/Searching.Api/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/src/Services/Searching/Searching.Api/appsettings.json -------------------------------------------------------------------------------- /test/ServicesTests/IntegrationTest/IntegrationTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/test/ServicesTests/IntegrationTest/IntegrationTest.csproj -------------------------------------------------------------------------------- /test/ServicesTests/IntegrationTest/UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justmine66/MicroService.AutoDevOpsPipeLines/HEAD/test/ServicesTests/IntegrationTest/UnitTest1.cs --------------------------------------------------------------------------------