├── .azure └── config.json ├── .github ├── CODE_OF_CONDUCT.md ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── deploy.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── LICENSE.txt ├── README.md ├── azure.yaml ├── docs └── media │ ├── azure-portal.png │ ├── cicd-phases.png │ ├── deploy-started.png │ ├── deploy.png │ ├── edit-the-deploy-file.png │ ├── get-public-url.png │ ├── secrets.png │ ├── secrets2.png │ ├── store-ui.png │ ├── success.png │ └── topology.png ├── infra ├── abbreviations.json ├── app │ ├── inventory.bicep │ ├── products.bicep │ └── store.bicep ├── core │ ├── ai │ │ └── cognitiveservices.bicep │ ├── database │ │ ├── cosmos │ │ │ ├── cosmos-account.bicep │ │ │ ├── mongo │ │ │ │ ├── cosmos-mongo-account.bicep │ │ │ │ └── cosmos-mongo-db.bicep │ │ │ └── sql │ │ │ │ ├── cosmos-sql-account.bicep │ │ │ │ ├── cosmos-sql-db.bicep │ │ │ │ ├── cosmos-sql-role-assign.bicep │ │ │ │ └── cosmos-sql-role-def.bicep │ │ ├── postgresql │ │ │ └── flexibleserver.bicep │ │ └── sqlserver │ │ │ └── sqlserver.bicep │ ├── gateway │ │ └── apim.bicep │ ├── host │ │ ├── aks-agent-pool.bicep │ │ ├── aks-managed-cluster.bicep │ │ ├── aks.bicep │ │ ├── appservice-appsettings.bicep │ │ ├── appservice.bicep │ │ ├── appserviceplan.bicep │ │ ├── container-app-upsert.bicep │ │ ├── container-app.bicep │ │ ├── container-apps-environment.bicep │ │ ├── container-apps.bicep │ │ ├── container-registry.bicep │ │ ├── functions.bicep │ │ └── staticwebapp.bicep │ ├── monitor │ │ ├── applicationinsights-dashboard.bicep │ │ ├── applicationinsights.bicep │ │ ├── loganalytics.bicep │ │ └── monitoring.bicep │ ├── networking │ │ ├── cdn-endpoint.bicep │ │ ├── cdn-profile.bicep │ │ └── cdn.bicep │ ├── search │ │ └── search-services.bicep │ ├── security │ │ ├── keyvault-access.bicep │ │ ├── keyvault-secret.bicep │ │ ├── keyvault.bicep │ │ ├── registry-access.bicep │ │ ├── role.bicep │ │ └── user-assigned-identity.bicep │ └── storage │ │ └── storage-account.bicep ├── main.bicep └── main.parameters.json └── src ├── .dockerignore ├── Monitoring ├── ApplicationMapNodeNameInitializer.cs └── Monitoring.csproj ├── Store.InventoryApi ├── Dockerfile ├── Program.cs ├── Properties │ └── launchSettings.json ├── Store.InventoryApi.csproj ├── appsettings.Development.json └── appsettings.json ├── Store.ProductApi ├── Dockerfile ├── Program.cs ├── Properties │ └── launchSettings.json ├── Store.ProductApi.csproj ├── appsettings.Development.json └── appsettings.json ├── Store.sln └── Store ├── App.razor ├── Dockerfile ├── Pages ├── Error.cshtml ├── Error.cshtml.cs ├── Index.razor ├── _Host.cshtml └── _Layout.cshtml ├── Program.cs ├── Properties └── launchSettings.json ├── Shared ├── MainLayout.razor ├── MainLayout.razor.css └── SurveyPrompt.razor ├── Store.csproj ├── _Imports.razor ├── appsettings.Development.json ├── appsettings.json └── wwwroot ├── css ├── bootstrap │ ├── bootstrap.min.css │ └── bootstrap.min.css.map ├── open-iconic │ ├── FONT-LICENSE │ ├── ICON-LICENSE │ ├── README.md │ └── font │ │ ├── css │ │ └── open-iconic-bootstrap.min.css │ │ └── fonts │ │ ├── open-iconic.eot │ │ ├── open-iconic.otf │ │ ├── open-iconic.svg │ │ ├── open-iconic.ttf │ │ └── open-iconic.woff └── site.css └── favicon.ico /.azure/config.json: -------------------------------------------------------------------------------- 1 | {"version":1,"defaultEnvironment":"bradyg2apps05"} -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/LICENSE.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/README.md -------------------------------------------------------------------------------- /azure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/azure.yaml -------------------------------------------------------------------------------- /docs/media/azure-portal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/docs/media/azure-portal.png -------------------------------------------------------------------------------- /docs/media/cicd-phases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/docs/media/cicd-phases.png -------------------------------------------------------------------------------- /docs/media/deploy-started.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/docs/media/deploy-started.png -------------------------------------------------------------------------------- /docs/media/deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/docs/media/deploy.png -------------------------------------------------------------------------------- /docs/media/edit-the-deploy-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/docs/media/edit-the-deploy-file.png -------------------------------------------------------------------------------- /docs/media/get-public-url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/docs/media/get-public-url.png -------------------------------------------------------------------------------- /docs/media/secrets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/docs/media/secrets.png -------------------------------------------------------------------------------- /docs/media/secrets2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/docs/media/secrets2.png -------------------------------------------------------------------------------- /docs/media/store-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/docs/media/store-ui.png -------------------------------------------------------------------------------- /docs/media/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/docs/media/success.png -------------------------------------------------------------------------------- /docs/media/topology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/docs/media/topology.png -------------------------------------------------------------------------------- /infra/abbreviations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/infra/abbreviations.json -------------------------------------------------------------------------------- /infra/app/inventory.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/infra/app/inventory.bicep -------------------------------------------------------------------------------- /infra/app/products.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/infra/app/products.bicep -------------------------------------------------------------------------------- /infra/app/store.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/infra/app/store.bicep -------------------------------------------------------------------------------- /infra/core/ai/cognitiveservices.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/infra/core/ai/cognitiveservices.bicep -------------------------------------------------------------------------------- /infra/core/database/cosmos/cosmos-account.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/infra/core/database/cosmos/cosmos-account.bicep -------------------------------------------------------------------------------- /infra/core/database/cosmos/mongo/cosmos-mongo-account.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/infra/core/database/cosmos/mongo/cosmos-mongo-account.bicep -------------------------------------------------------------------------------- /infra/core/database/cosmos/mongo/cosmos-mongo-db.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/infra/core/database/cosmos/mongo/cosmos-mongo-db.bicep -------------------------------------------------------------------------------- /infra/core/database/cosmos/sql/cosmos-sql-account.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/infra/core/database/cosmos/sql/cosmos-sql-account.bicep -------------------------------------------------------------------------------- /infra/core/database/cosmos/sql/cosmos-sql-db.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/infra/core/database/cosmos/sql/cosmos-sql-db.bicep -------------------------------------------------------------------------------- /infra/core/database/cosmos/sql/cosmos-sql-role-assign.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/infra/core/database/cosmos/sql/cosmos-sql-role-assign.bicep -------------------------------------------------------------------------------- /infra/core/database/cosmos/sql/cosmos-sql-role-def.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/infra/core/database/cosmos/sql/cosmos-sql-role-def.bicep -------------------------------------------------------------------------------- /infra/core/database/postgresql/flexibleserver.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/infra/core/database/postgresql/flexibleserver.bicep -------------------------------------------------------------------------------- /infra/core/database/sqlserver/sqlserver.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/infra/core/database/sqlserver/sqlserver.bicep -------------------------------------------------------------------------------- /infra/core/gateway/apim.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/infra/core/gateway/apim.bicep -------------------------------------------------------------------------------- /infra/core/host/aks-agent-pool.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/infra/core/host/aks-agent-pool.bicep -------------------------------------------------------------------------------- /infra/core/host/aks-managed-cluster.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/infra/core/host/aks-managed-cluster.bicep -------------------------------------------------------------------------------- /infra/core/host/aks.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/infra/core/host/aks.bicep -------------------------------------------------------------------------------- /infra/core/host/appservice-appsettings.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/infra/core/host/appservice-appsettings.bicep -------------------------------------------------------------------------------- /infra/core/host/appservice.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/infra/core/host/appservice.bicep -------------------------------------------------------------------------------- /infra/core/host/appserviceplan.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/infra/core/host/appserviceplan.bicep -------------------------------------------------------------------------------- /infra/core/host/container-app-upsert.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/infra/core/host/container-app-upsert.bicep -------------------------------------------------------------------------------- /infra/core/host/container-app.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/infra/core/host/container-app.bicep -------------------------------------------------------------------------------- /infra/core/host/container-apps-environment.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/infra/core/host/container-apps-environment.bicep -------------------------------------------------------------------------------- /infra/core/host/container-apps.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/infra/core/host/container-apps.bicep -------------------------------------------------------------------------------- /infra/core/host/container-registry.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/infra/core/host/container-registry.bicep -------------------------------------------------------------------------------- /infra/core/host/functions.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/infra/core/host/functions.bicep -------------------------------------------------------------------------------- /infra/core/host/staticwebapp.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/infra/core/host/staticwebapp.bicep -------------------------------------------------------------------------------- /infra/core/monitor/applicationinsights-dashboard.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/infra/core/monitor/applicationinsights-dashboard.bicep -------------------------------------------------------------------------------- /infra/core/monitor/applicationinsights.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/infra/core/monitor/applicationinsights.bicep -------------------------------------------------------------------------------- /infra/core/monitor/loganalytics.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/infra/core/monitor/loganalytics.bicep -------------------------------------------------------------------------------- /infra/core/monitor/monitoring.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/infra/core/monitor/monitoring.bicep -------------------------------------------------------------------------------- /infra/core/networking/cdn-endpoint.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/infra/core/networking/cdn-endpoint.bicep -------------------------------------------------------------------------------- /infra/core/networking/cdn-profile.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/infra/core/networking/cdn-profile.bicep -------------------------------------------------------------------------------- /infra/core/networking/cdn.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/infra/core/networking/cdn.bicep -------------------------------------------------------------------------------- /infra/core/search/search-services.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/infra/core/search/search-services.bicep -------------------------------------------------------------------------------- /infra/core/security/keyvault-access.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/infra/core/security/keyvault-access.bicep -------------------------------------------------------------------------------- /infra/core/security/keyvault-secret.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/infra/core/security/keyvault-secret.bicep -------------------------------------------------------------------------------- /infra/core/security/keyvault.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/infra/core/security/keyvault.bicep -------------------------------------------------------------------------------- /infra/core/security/registry-access.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/infra/core/security/registry-access.bicep -------------------------------------------------------------------------------- /infra/core/security/role.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/infra/core/security/role.bicep -------------------------------------------------------------------------------- /infra/core/security/user-assigned-identity.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/infra/core/security/user-assigned-identity.bicep -------------------------------------------------------------------------------- /infra/core/storage/storage-account.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/infra/core/storage/storage-account.bicep -------------------------------------------------------------------------------- /infra/main.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/infra/main.bicep -------------------------------------------------------------------------------- /infra/main.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/infra/main.parameters.json -------------------------------------------------------------------------------- /src/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/src/.dockerignore -------------------------------------------------------------------------------- /src/Monitoring/ApplicationMapNodeNameInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/src/Monitoring/ApplicationMapNodeNameInitializer.cs -------------------------------------------------------------------------------- /src/Monitoring/Monitoring.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/src/Monitoring/Monitoring.csproj -------------------------------------------------------------------------------- /src/Store.InventoryApi/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/src/Store.InventoryApi/Dockerfile -------------------------------------------------------------------------------- /src/Store.InventoryApi/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/src/Store.InventoryApi/Program.cs -------------------------------------------------------------------------------- /src/Store.InventoryApi/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/src/Store.InventoryApi/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Store.InventoryApi/Store.InventoryApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/src/Store.InventoryApi/Store.InventoryApi.csproj -------------------------------------------------------------------------------- /src/Store.InventoryApi/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/src/Store.InventoryApi/appsettings.Development.json -------------------------------------------------------------------------------- /src/Store.InventoryApi/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/src/Store.InventoryApi/appsettings.json -------------------------------------------------------------------------------- /src/Store.ProductApi/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/src/Store.ProductApi/Dockerfile -------------------------------------------------------------------------------- /src/Store.ProductApi/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/src/Store.ProductApi/Program.cs -------------------------------------------------------------------------------- /src/Store.ProductApi/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/src/Store.ProductApi/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Store.ProductApi/Store.ProductApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/src/Store.ProductApi/Store.ProductApi.csproj -------------------------------------------------------------------------------- /src/Store.ProductApi/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/src/Store.ProductApi/appsettings.Development.json -------------------------------------------------------------------------------- /src/Store.ProductApi/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/src/Store.ProductApi/appsettings.json -------------------------------------------------------------------------------- /src/Store.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/src/Store.sln -------------------------------------------------------------------------------- /src/Store/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/src/Store/App.razor -------------------------------------------------------------------------------- /src/Store/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/src/Store/Dockerfile -------------------------------------------------------------------------------- /src/Store/Pages/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/src/Store/Pages/Error.cshtml -------------------------------------------------------------------------------- /src/Store/Pages/Error.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/src/Store/Pages/Error.cshtml.cs -------------------------------------------------------------------------------- /src/Store/Pages/Index.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/src/Store/Pages/Index.razor -------------------------------------------------------------------------------- /src/Store/Pages/_Host.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/src/Store/Pages/_Host.cshtml -------------------------------------------------------------------------------- /src/Store/Pages/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/src/Store/Pages/_Layout.cshtml -------------------------------------------------------------------------------- /src/Store/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/src/Store/Program.cs -------------------------------------------------------------------------------- /src/Store/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/src/Store/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/Store/Shared/MainLayout.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/src/Store/Shared/MainLayout.razor -------------------------------------------------------------------------------- /src/Store/Shared/MainLayout.razor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/src/Store/Shared/MainLayout.razor.css -------------------------------------------------------------------------------- /src/Store/Shared/SurveyPrompt.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/src/Store/Shared/SurveyPrompt.razor -------------------------------------------------------------------------------- /src/Store/Store.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/src/Store/Store.csproj -------------------------------------------------------------------------------- /src/Store/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/src/Store/_Imports.razor -------------------------------------------------------------------------------- /src/Store/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/src/Store/appsettings.Development.json -------------------------------------------------------------------------------- /src/Store/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/src/Store/appsettings.json -------------------------------------------------------------------------------- /src/Store/wwwroot/css/bootstrap/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/src/Store/wwwroot/css/bootstrap/bootstrap.min.css -------------------------------------------------------------------------------- /src/Store/wwwroot/css/bootstrap/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/src/Store/wwwroot/css/bootstrap/bootstrap.min.css.map -------------------------------------------------------------------------------- /src/Store/wwwroot/css/open-iconic/FONT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/src/Store/wwwroot/css/open-iconic/FONT-LICENSE -------------------------------------------------------------------------------- /src/Store/wwwroot/css/open-iconic/ICON-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/src/Store/wwwroot/css/open-iconic/ICON-LICENSE -------------------------------------------------------------------------------- /src/Store/wwwroot/css/open-iconic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/src/Store/wwwroot/css/open-iconic/README.md -------------------------------------------------------------------------------- /src/Store/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/src/Store/wwwroot/css/open-iconic/font/css/open-iconic-bootstrap.min.css -------------------------------------------------------------------------------- /src/Store/wwwroot/css/open-iconic/font/fonts/open-iconic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/src/Store/wwwroot/css/open-iconic/font/fonts/open-iconic.eot -------------------------------------------------------------------------------- /src/Store/wwwroot/css/open-iconic/font/fonts/open-iconic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/src/Store/wwwroot/css/open-iconic/font/fonts/open-iconic.otf -------------------------------------------------------------------------------- /src/Store/wwwroot/css/open-iconic/font/fonts/open-iconic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/src/Store/wwwroot/css/open-iconic/font/fonts/open-iconic.svg -------------------------------------------------------------------------------- /src/Store/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/src/Store/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf -------------------------------------------------------------------------------- /src/Store/wwwroot/css/open-iconic/font/fonts/open-iconic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/src/Store/wwwroot/css/open-iconic/font/fonts/open-iconic.woff -------------------------------------------------------------------------------- /src/Store/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/src/Store/wwwroot/css/site.css -------------------------------------------------------------------------------- /src/Store/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure-Samples/dotNET-FrontEnd-to-BackEnd-on-Azure-Container-Apps/HEAD/src/Store/wwwroot/favicon.ico --------------------------------------------------------------------------------