├── .github └── workflows │ ├── ci-cd-hotels-app.yml │ ├── ci-cd-infra.yml │ ├── ci-cd-real-estate-app.yml │ ├── template-add-hotels-ci.yml │ ├── template-app-cd-app-service.yml │ ├── template-app-cd-container-app.yml │ ├── template-app-ci-config.yml │ ├── template-app-ci-docker.yml │ ├── template-app-ci-dotnet.yml │ ├── template-infra-cd.yml │ └── template-infra-ci.yml ├── .gitignore ├── GitVersion.yml ├── README.md ├── demos └── api-management-from-developer-perspective.ipynb ├── infra ├── 00_prerequisites │ └── README.md ├── 01_governance │ ├── deploy.ps1 │ ├── governance-parameters.json │ └── governance.bicep ├── 02_networking │ ├── deploy.ps1 │ ├── networking-parameters.json │ └── networking.bicep ├── 03_shared_infra │ ├── deploy.ps1 │ ├── shared-infra-parameters.json │ └── shared-infra.bicep ├── 04_applications │ ├── applications.bicep │ ├── hotels-app │ │ ├── deploy.ps1 │ │ ├── hotels-app-parameters.json │ │ └── hotels-app.bicep │ └── real-estate-app │ │ ├── deploy.ps1 │ │ ├── real-estate-app-parameters.json │ │ ├── real-estate-app.bicep │ │ └── resources │ │ └── rental-houses.json ├── 05_configuration │ ├── api-management │ │ ├── 01_named_values │ │ │ ├── deploy.ps1 │ │ │ └── named-values.bicep │ │ ├── 02_fragments │ │ │ ├── deploy.ps1 │ │ │ ├── fragments │ │ │ │ ├── error-remove-stacktraces.xml │ │ │ │ ├── inbound-authenticate-system-api.xml │ │ │ │ ├── inbound-authorize-system-api.xml │ │ │ │ ├── inbound-cors-developer-portal.xml │ │ │ │ ├── inbound-request-id.xml │ │ │ │ └── outbound-request-id.xml │ │ │ └── policy-fragments.bicep │ │ ├── 03_policy │ │ │ ├── deploy.ps1 │ │ │ ├── global-policy.bicep │ │ │ └── policy │ │ │ │ └── global.xml │ │ ├── 04_apis │ │ │ ├── apis.bicep │ │ │ ├── deploy.ps1 │ │ │ ├── hotel-api │ │ │ │ ├── deploy.ps1 │ │ │ │ ├── hotel-api.bicep │ │ │ │ └── policies │ │ │ │ │ ├── v1 │ │ │ │ │ └── api.xml │ │ │ │ │ └── v2 │ │ │ │ │ └── api.xml │ │ │ ├── hotel-booking-api │ │ │ │ ├── deploy.ps1 │ │ │ │ └── hotel-booking-api.bicep │ │ │ ├── hotel-catalog-api │ │ │ │ ├── deploy.ps1 │ │ │ │ └── hotel-catalog-api.bicep │ │ │ ├── hotel-pricing-api │ │ │ │ ├── deploy.ps1 │ │ │ │ └── hotel-pricing-api.bicep │ │ │ ├── messaging-api │ │ │ │ ├── TODO.md │ │ │ │ ├── deploy.ps1 │ │ │ │ ├── messaging-api.bicep │ │ │ │ ├── policies │ │ │ │ │ └── api.xml │ │ │ │ └── schemas │ │ │ │ │ ├── common │ │ │ │ │ └── header.v1.json │ │ │ │ │ └── events │ │ │ │ │ ├── customer.onboarded.v1.json │ │ │ │ │ ├── invoice.booked.v1.json │ │ │ │ │ └── project.won.v1.json │ │ │ ├── real-estate-api │ │ │ │ ├── deploy.ps1 │ │ │ │ ├── policies │ │ │ │ │ ├── api.xml │ │ │ │ │ ├── operation-get-rental-apartments.xml │ │ │ │ │ ├── operation-get-rental-houses.xml │ │ │ │ │ ├── operation-get-sales-apartments.xml │ │ │ │ │ ├── operation-get-sales-houses.xml │ │ │ │ │ └── operation-post-house.xml │ │ │ │ └── real-estate-api.bicep │ │ │ ├── real-estate-rental-api │ │ │ │ ├── deploy.ps1 │ │ │ │ ├── policies │ │ │ │ │ └── api.xml │ │ │ │ └── real-estate-rental-api.bicep │ │ │ └── real-estate-sales-api │ │ │ │ ├── deploy.ps1 │ │ │ │ ├── policies │ │ │ │ └── api.xml │ │ │ │ └── real-estate-sales-api.bicep │ │ ├── 05_portal_content │ │ │ ├── content │ │ │ │ ├── data.json │ │ │ │ └── media │ │ │ │ │ ├── 0f8d2008-b30f-5efe-746f-66a9cd36d755 │ │ │ │ │ ├── 0f8d2008-b30f-5efe-746f-66a9cd36d755.info │ │ │ │ │ ├── 16638294-a730-3dfd-d237-821e0a6bf551 │ │ │ │ │ ├── 16638294-a730-3dfd-d237-821e0a6bf551.info │ │ │ │ │ ├── 51592220-9f28-3a01-485a-2d29d50ed02d │ │ │ │ │ ├── 51592220-9f28-3a01-485a-2d29d50ed02d.info │ │ │ │ │ ├── 548cf4f4-9b2e-9d99-588c-35237e9b8988 │ │ │ │ │ ├── 548cf4f4-9b2e-9d99-588c-35237e9b8988.info │ │ │ │ │ ├── 9d0e0246-b8ed-20f9-d319-2d3aa5e57638 │ │ │ │ │ ├── 9d0e0246-b8ed-20f9-d319-2d3aa5e57638.info │ │ │ │ │ ├── bb748139-5872-96ec-24e8-b4b85630b0c2 │ │ │ │ │ ├── bb748139-5872-96ec-24e8-b4b85630b0c2.info │ │ │ │ │ ├── c39b5579-9252-cb2b-0f9a-bee1aa99798b │ │ │ │ │ ├── c39b5579-9252-cb2b-0f9a-bee1aa99798b.info │ │ │ │ │ ├── c6a0071a-9878-42ee-02f7-2bb3f947a972 │ │ │ │ │ ├── c6a0071a-9878-42ee-02f7-2bb3f947a972.info │ │ │ │ │ ├── ce8c6f3d-2c59-635f-5c4d-9173f384eba7 │ │ │ │ │ ├── ce8c6f3d-2c59-635f-5c4d-9173f384eba7.info │ │ │ │ │ ├── d6b9fe83-0a0b-e511-e533-ca5535b168d9 │ │ │ │ │ └── d6b9fe83-0a0b-e511-e533-ca5535b168d9.info │ │ │ ├── deploy.ps1 │ │ │ └── scripts │ │ │ │ ├── capture.bat │ │ │ │ ├── capture.js │ │ │ │ ├── cleanup.bat │ │ │ │ ├── cleanup.js │ │ │ │ ├── generate.bat │ │ │ │ ├── generate.js │ │ │ │ ├── generate.sh │ │ │ │ ├── gtm.js │ │ │ │ ├── migrate.bat │ │ │ │ ├── migrate.js │ │ │ │ ├── package-lock.json │ │ │ │ ├── package.json │ │ │ │ ├── portal-content-export.js │ │ │ │ ├── portal-content-export.ps1 │ │ │ │ ├── portal-content-import.js │ │ │ │ ├── updatecontenturl.js │ │ │ │ └── utils.js │ │ ├── 06_portal_config │ │ │ ├── deploy.ps1 │ │ │ └── portal-config.bicep │ │ ├── 07_portal_rbac │ │ │ ├── deploy.ps1 │ │ │ └── portal-rbac.bicep │ │ ├── api-management-properties.json │ │ ├── api-management.bicep │ │ └── deploy.ps1 │ ├── configuration.bicep │ └── deploy.ps1 ├── README.md ├── TODO.md ├── bicepconfig.json ├── deploy.ps1 ├── infra-naming.bicep ├── infra-parameters.json ├── infra-shared.bicep ├── infra.bicep ├── landing_zones │ ├── api-management.bicep │ └── web-application.bicep ├── modules │ ├── api-management-api-operation.bicep │ ├── api-management-api-schemas.bicep │ ├── api-management-api.bicep │ ├── api-management-app-insights-api-logger.bicep │ ├── api-management-app-insights-global-logger.bicep │ ├── api-management-backend.bicep │ ├── api-management-backup.bicep │ ├── api-management-group-aad.bicep │ ├── api-management-log-analytics-diagnostics.bicep │ ├── api-management-named-values.bicep │ ├── api-management-policy-fragment.bicep │ ├── api-management-policy.bicep │ ├── api-management-portal-aad.bicep │ ├── api-management-product.bicep │ ├── api-management-remove-defaults.bicep │ ├── api-management-schema.bicep │ ├── api-management-subscription.bicep │ ├── api-management.bicep │ ├── app-configuration-setting-secret.bicep │ ├── app-configuration-setting.bicep │ ├── app-configuration.bicep │ ├── app-service-current-settings.bicep │ ├── app-service-plan.bicep │ ├── app-service.bicep │ ├── application-insights.bicep │ ├── budget-alert-resource-group.bicep │ ├── budget-alert-subscription.bicep │ ├── container-app.bicep │ ├── container-apps-environment.bicep │ ├── container-registry.bicep │ ├── deployment-script.bicep │ ├── key-vault-secret.bicep │ ├── key-vault.bicep │ ├── log-analytics-workspace.bicep │ ├── policy-assignment-subscription.bicep │ ├── policy-definition-subscription.bicep │ ├── private-endpoint.bicep │ ├── redis-cache.bicep │ ├── resource-group.bicep │ ├── role-assignment-api-management.bicep │ ├── role-assignment-app-configuration.bicep │ ├── role-assignment-container-registry.bicep │ ├── role-assignment-key-vault.bicep │ ├── role-assignment-resource-group.bicep │ ├── role-assignment-sql-database-array.bicep │ ├── role-assignment-sql-database.bicep │ ├── role-assignment-sql-server.bicep │ ├── role-assignment-storage-account.bicep │ ├── role-assignment-subscription.bicep │ ├── scripts │ │ ├── api-management-remove-defaults.ps1 │ │ ├── container-apps-upsert.ps1 │ │ ├── sql-database-role-assignment.ps1 │ │ └── storage-account-upload-blob.ps1 │ ├── sql-database.bicep │ ├── sql-server.bicep │ ├── storage-account-upload-blob.bicep │ ├── storage-account.bicep │ ├── tags-subscription.bicep │ └── user-assigned-identity.bicep ├── policies │ └── definitions │ │ ├── policy-definition-apimanagement-deny-api_with_http.json │ │ ├── policy-definition-apimanagement-deny-api_with_invalid_subscription_key_name.json │ │ └── policy-definition-apimanagement-deny-api_without_subscription_key.json └── tools │ └── generate-role-assignment-module │ ├── generate-role-assignment-module.ps1 │ └── role-assignment-template.txt ├── media ├── Logo.pptx ├── ftw-logo-with-icon-black.png ├── ftw-logo-with-icon-white.png ├── ftw-logo-without-icon-black.png └── ftw-logo-without-icon-white.png └── src ├── hotels-app ├── .dockerignore ├── Ftw.Hotels.Common │ ├── Constants │ │ └── SchemaNames.cs │ ├── Ftw.Hotels.Common.csproj │ └── WebAppBuilderExtensions │ │ ├── ConfigurationExtension.cs │ │ ├── ErrorHandlingExtension.cs │ │ └── LoggingExtension.cs ├── Ftw.Hotels.HotelBooking │ ├── Api │ │ ├── Federation │ │ │ └── RoomAvailabilityExtension.graphql │ │ ├── GraphQL │ │ │ └── Query.cs │ │ └── Types │ │ │ └── RoomAvailabilityType.cs │ ├── Dockerfile │ ├── Ftw.Hotels.HotelBooking.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── appsettings.Development.json │ └── appsettings.json ├── Ftw.Hotels.HotelCatalog │ ├── Api │ │ ├── GraphQL │ │ │ ├── Mutation.cs │ │ │ ├── Query.cs │ │ │ └── Subscription.cs │ │ ├── MapProfiles │ │ │ └── HotelCatalogProfile.cs │ │ ├── Services │ │ │ ├── HotelCatalogService.cs │ │ │ └── IHotelCatalogService.cs │ │ └── Types │ │ │ ├── CountryType.cs │ │ │ ├── HotelType.cs │ │ │ ├── RoomTemperature.cs │ │ │ └── RoomType.cs │ ├── Data │ │ ├── DbContexts │ │ │ └── HotelCatalogDbContext.cs │ │ ├── Migrations │ │ │ ├── 20221209182554_initial.Designer.cs │ │ │ ├── 20221209182554_initial.cs │ │ │ ├── 20221209203401_countrySeed.Designer.cs │ │ │ ├── 20221209203401_countrySeed.cs │ │ │ ├── 20230103073556_hotels-rooms.Designer.cs │ │ │ ├── 20230103073556_hotels-rooms.cs │ │ │ ├── HotelCatalogDbContextModelSnapshot.cs │ │ │ └── HotelCatalogDbMigrator.cs │ │ ├── Models │ │ │ ├── BaseEntity.cs │ │ │ ├── Country.cs │ │ │ ├── Hotel.cs │ │ │ └── Room.cs │ │ └── Repositories │ │ │ ├── HotelCatalogRepository.cs │ │ │ └── IHotelCatalogRepository.cs │ ├── Dockerfile │ ├── Ftw.Hotels.HotelCatalog.csproj │ ├── IoT │ │ └── RoomTemperatureGeneratorHostedService.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ └── appsettings.json ├── Ftw.Hotels.HotelPricing │ ├── Api │ │ ├── Federation │ │ │ └── RoomPriceExtension.graphql │ │ ├── GraphQL │ │ │ ├── Query.cs │ │ │ └── RoomPriceDataLoader.cs │ │ └── Types │ │ │ └── RoomPriceType.cs │ ├── Data │ │ └── RoomPriceCalculator.cs │ ├── Dockerfile │ ├── Ftw.Hotels.HotelPricing.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── appsettings.Development.json │ └── appsettings.json ├── Ftw.Hotels.SuperGraph │ ├── Api │ │ ├── GraphQL │ │ │ └── Query.cs │ │ ├── Stitching │ │ │ └── HotelWeatherExtension.graphql │ │ └── Types │ │ │ └── WeatherInfoType.cs │ ├── Dockerfile │ ├── Ftw.Hotels.SuperGraph.csproj │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── appsettings.local.json │ └── wwwroot │ │ └── index.html └── Ftw.Hotels.sln └── real-estate-app ├── .dockerignore ├── Ftw.RealEstate.Rental ├── Api │ ├── GraphQL │ │ └── Query.cs │ └── Types │ │ └── ApartmentType.cs ├── Dockerfile ├── Ftw.RealEstate.Rental.csproj ├── Program.cs ├── Properties │ └── launchSettings.json ├── appsettings.Development.json └── appsettings.json ├── Ftw.RealEstate.Sales ├── Api │ ├── Endpoints │ │ └── SalesEndpoints.cs │ └── Schemas │ │ ├── ApartmentDto.cs │ │ └── HouseDto.cs ├── Dockerfile ├── Ftw.RealEstate.Sales.csproj ├── Program.cs ├── Properties │ └── launchSettings.json ├── appsettings.Development.json └── appsettings.json └── Ftw.RealEstate.sln /.github/workflows/ci-cd-hotels-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/.github/workflows/ci-cd-hotels-app.yml -------------------------------------------------------------------------------- /.github/workflows/ci-cd-infra.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/.github/workflows/ci-cd-infra.yml -------------------------------------------------------------------------------- /.github/workflows/ci-cd-real-estate-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/.github/workflows/ci-cd-real-estate-app.yml -------------------------------------------------------------------------------- /.github/workflows/template-add-hotels-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/.github/workflows/template-add-hotels-ci.yml -------------------------------------------------------------------------------- /.github/workflows/template-app-cd-app-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/.github/workflows/template-app-cd-app-service.yml -------------------------------------------------------------------------------- /.github/workflows/template-app-cd-container-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/.github/workflows/template-app-cd-container-app.yml -------------------------------------------------------------------------------- /.github/workflows/template-app-ci-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/.github/workflows/template-app-ci-config.yml -------------------------------------------------------------------------------- /.github/workflows/template-app-ci-docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/.github/workflows/template-app-ci-docker.yml -------------------------------------------------------------------------------- /.github/workflows/template-app-ci-dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/.github/workflows/template-app-ci-dotnet.yml -------------------------------------------------------------------------------- /.github/workflows/template-infra-cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/.github/workflows/template-infra-cd.yml -------------------------------------------------------------------------------- /.github/workflows/template-infra-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/.github/workflows/template-infra-ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/.gitignore -------------------------------------------------------------------------------- /GitVersion.yml: -------------------------------------------------------------------------------- 1 | mode: Mainline -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/README.md -------------------------------------------------------------------------------- /demos/api-management-from-developer-perspective.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/demos/api-management-from-developer-perspective.ipynb -------------------------------------------------------------------------------- /infra/00_prerequisites/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/00_prerequisites/README.md -------------------------------------------------------------------------------- /infra/01_governance/deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/01_governance/deploy.ps1 -------------------------------------------------------------------------------- /infra/01_governance/governance-parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/01_governance/governance-parameters.json -------------------------------------------------------------------------------- /infra/01_governance/governance.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/01_governance/governance.bicep -------------------------------------------------------------------------------- /infra/02_networking/deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/02_networking/deploy.ps1 -------------------------------------------------------------------------------- /infra/02_networking/networking-parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/02_networking/networking-parameters.json -------------------------------------------------------------------------------- /infra/02_networking/networking.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/02_networking/networking.bicep -------------------------------------------------------------------------------- /infra/03_shared_infra/deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/03_shared_infra/deploy.ps1 -------------------------------------------------------------------------------- /infra/03_shared_infra/shared-infra-parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/03_shared_infra/shared-infra-parameters.json -------------------------------------------------------------------------------- /infra/03_shared_infra/shared-infra.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/03_shared_infra/shared-infra.bicep -------------------------------------------------------------------------------- /infra/04_applications/applications.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/04_applications/applications.bicep -------------------------------------------------------------------------------- /infra/04_applications/hotels-app/deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/04_applications/hotels-app/deploy.ps1 -------------------------------------------------------------------------------- /infra/04_applications/hotels-app/hotels-app-parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/04_applications/hotels-app/hotels-app-parameters.json -------------------------------------------------------------------------------- /infra/04_applications/hotels-app/hotels-app.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/04_applications/hotels-app/hotels-app.bicep -------------------------------------------------------------------------------- /infra/04_applications/real-estate-app/deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/04_applications/real-estate-app/deploy.ps1 -------------------------------------------------------------------------------- /infra/04_applications/real-estate-app/real-estate-app-parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/04_applications/real-estate-app/real-estate-app-parameters.json -------------------------------------------------------------------------------- /infra/04_applications/real-estate-app/real-estate-app.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/04_applications/real-estate-app/real-estate-app.bicep -------------------------------------------------------------------------------- /infra/04_applications/real-estate-app/resources/rental-houses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/04_applications/real-estate-app/resources/rental-houses.json -------------------------------------------------------------------------------- /infra/05_configuration/api-management/01_named_values/deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/01_named_values/deploy.ps1 -------------------------------------------------------------------------------- /infra/05_configuration/api-management/01_named_values/named-values.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/01_named_values/named-values.bicep -------------------------------------------------------------------------------- /infra/05_configuration/api-management/02_fragments/deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/02_fragments/deploy.ps1 -------------------------------------------------------------------------------- /infra/05_configuration/api-management/02_fragments/fragments/error-remove-stacktraces.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/02_fragments/fragments/error-remove-stacktraces.xml -------------------------------------------------------------------------------- /infra/05_configuration/api-management/02_fragments/fragments/inbound-authenticate-system-api.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/02_fragments/fragments/inbound-authenticate-system-api.xml -------------------------------------------------------------------------------- /infra/05_configuration/api-management/02_fragments/fragments/inbound-authorize-system-api.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/02_fragments/fragments/inbound-authorize-system-api.xml -------------------------------------------------------------------------------- /infra/05_configuration/api-management/02_fragments/fragments/inbound-cors-developer-portal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/02_fragments/fragments/inbound-cors-developer-portal.xml -------------------------------------------------------------------------------- /infra/05_configuration/api-management/02_fragments/fragments/inbound-request-id.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/02_fragments/fragments/inbound-request-id.xml -------------------------------------------------------------------------------- /infra/05_configuration/api-management/02_fragments/fragments/outbound-request-id.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/02_fragments/fragments/outbound-request-id.xml -------------------------------------------------------------------------------- /infra/05_configuration/api-management/02_fragments/policy-fragments.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/02_fragments/policy-fragments.bicep -------------------------------------------------------------------------------- /infra/05_configuration/api-management/03_policy/deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/03_policy/deploy.ps1 -------------------------------------------------------------------------------- /infra/05_configuration/api-management/03_policy/global-policy.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/03_policy/global-policy.bicep -------------------------------------------------------------------------------- /infra/05_configuration/api-management/03_policy/policy/global.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/03_policy/policy/global.xml -------------------------------------------------------------------------------- /infra/05_configuration/api-management/04_apis/apis.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/04_apis/apis.bicep -------------------------------------------------------------------------------- /infra/05_configuration/api-management/04_apis/deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/04_apis/deploy.ps1 -------------------------------------------------------------------------------- /infra/05_configuration/api-management/04_apis/hotel-api/deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/04_apis/hotel-api/deploy.ps1 -------------------------------------------------------------------------------- /infra/05_configuration/api-management/04_apis/hotel-api/hotel-api.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/04_apis/hotel-api/hotel-api.bicep -------------------------------------------------------------------------------- /infra/05_configuration/api-management/04_apis/hotel-api/policies/v1/api.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/04_apis/hotel-api/policies/v1/api.xml -------------------------------------------------------------------------------- /infra/05_configuration/api-management/04_apis/hotel-api/policies/v2/api.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/04_apis/hotel-api/policies/v2/api.xml -------------------------------------------------------------------------------- /infra/05_configuration/api-management/04_apis/hotel-booking-api/deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/04_apis/hotel-booking-api/deploy.ps1 -------------------------------------------------------------------------------- /infra/05_configuration/api-management/04_apis/hotel-booking-api/hotel-booking-api.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/04_apis/hotel-booking-api/hotel-booking-api.bicep -------------------------------------------------------------------------------- /infra/05_configuration/api-management/04_apis/hotel-catalog-api/deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/04_apis/hotel-catalog-api/deploy.ps1 -------------------------------------------------------------------------------- /infra/05_configuration/api-management/04_apis/hotel-catalog-api/hotel-catalog-api.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/04_apis/hotel-catalog-api/hotel-catalog-api.bicep -------------------------------------------------------------------------------- /infra/05_configuration/api-management/04_apis/hotel-pricing-api/deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/04_apis/hotel-pricing-api/deploy.ps1 -------------------------------------------------------------------------------- /infra/05_configuration/api-management/04_apis/hotel-pricing-api/hotel-pricing-api.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/04_apis/hotel-pricing-api/hotel-pricing-api.bicep -------------------------------------------------------------------------------- /infra/05_configuration/api-management/04_apis/messaging-api/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/04_apis/messaging-api/TODO.md -------------------------------------------------------------------------------- /infra/05_configuration/api-management/04_apis/messaging-api/deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/04_apis/messaging-api/deploy.ps1 -------------------------------------------------------------------------------- /infra/05_configuration/api-management/04_apis/messaging-api/messaging-api.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/04_apis/messaging-api/messaging-api.bicep -------------------------------------------------------------------------------- /infra/05_configuration/api-management/04_apis/messaging-api/policies/api.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/04_apis/messaging-api/policies/api.xml -------------------------------------------------------------------------------- /infra/05_configuration/api-management/04_apis/messaging-api/schemas/common/header.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/04_apis/messaging-api/schemas/common/header.v1.json -------------------------------------------------------------------------------- /infra/05_configuration/api-management/04_apis/messaging-api/schemas/events/customer.onboarded.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/04_apis/messaging-api/schemas/events/customer.onboarded.v1.json -------------------------------------------------------------------------------- /infra/05_configuration/api-management/04_apis/messaging-api/schemas/events/invoice.booked.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/04_apis/messaging-api/schemas/events/invoice.booked.v1.json -------------------------------------------------------------------------------- /infra/05_configuration/api-management/04_apis/messaging-api/schemas/events/project.won.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/04_apis/messaging-api/schemas/events/project.won.v1.json -------------------------------------------------------------------------------- /infra/05_configuration/api-management/04_apis/real-estate-api/deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/04_apis/real-estate-api/deploy.ps1 -------------------------------------------------------------------------------- /infra/05_configuration/api-management/04_apis/real-estate-api/policies/api.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/04_apis/real-estate-api/policies/api.xml -------------------------------------------------------------------------------- /infra/05_configuration/api-management/04_apis/real-estate-api/policies/operation-get-rental-apartments.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/04_apis/real-estate-api/policies/operation-get-rental-apartments.xml -------------------------------------------------------------------------------- /infra/05_configuration/api-management/04_apis/real-estate-api/policies/operation-get-rental-houses.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/04_apis/real-estate-api/policies/operation-get-rental-houses.xml -------------------------------------------------------------------------------- /infra/05_configuration/api-management/04_apis/real-estate-api/policies/operation-get-sales-apartments.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/04_apis/real-estate-api/policies/operation-get-sales-apartments.xml -------------------------------------------------------------------------------- /infra/05_configuration/api-management/04_apis/real-estate-api/policies/operation-get-sales-houses.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/04_apis/real-estate-api/policies/operation-get-sales-houses.xml -------------------------------------------------------------------------------- /infra/05_configuration/api-management/04_apis/real-estate-api/policies/operation-post-house.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/04_apis/real-estate-api/policies/operation-post-house.xml -------------------------------------------------------------------------------- /infra/05_configuration/api-management/04_apis/real-estate-api/real-estate-api.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/04_apis/real-estate-api/real-estate-api.bicep -------------------------------------------------------------------------------- /infra/05_configuration/api-management/04_apis/real-estate-rental-api/deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/04_apis/real-estate-rental-api/deploy.ps1 -------------------------------------------------------------------------------- /infra/05_configuration/api-management/04_apis/real-estate-rental-api/policies/api.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/04_apis/real-estate-rental-api/policies/api.xml -------------------------------------------------------------------------------- /infra/05_configuration/api-management/04_apis/real-estate-rental-api/real-estate-rental-api.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/04_apis/real-estate-rental-api/real-estate-rental-api.bicep -------------------------------------------------------------------------------- /infra/05_configuration/api-management/04_apis/real-estate-sales-api/deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/04_apis/real-estate-sales-api/deploy.ps1 -------------------------------------------------------------------------------- /infra/05_configuration/api-management/04_apis/real-estate-sales-api/policies/api.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/04_apis/real-estate-sales-api/policies/api.xml -------------------------------------------------------------------------------- /infra/05_configuration/api-management/04_apis/real-estate-sales-api/real-estate-sales-api.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/04_apis/real-estate-sales-api/real-estate-sales-api.bicep -------------------------------------------------------------------------------- /infra/05_configuration/api-management/05_portal_content/content/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/05_portal_content/content/data.json -------------------------------------------------------------------------------- /infra/05_configuration/api-management/05_portal_content/content/media/0f8d2008-b30f-5efe-746f-66a9cd36d755: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/05_portal_content/content/media/0f8d2008-b30f-5efe-746f-66a9cd36d755 -------------------------------------------------------------------------------- /infra/05_configuration/api-management/05_portal_content/content/media/0f8d2008-b30f-5efe-746f-66a9cd36d755.info: -------------------------------------------------------------------------------- 1 | {"contentType":"image/png"} -------------------------------------------------------------------------------- /infra/05_configuration/api-management/05_portal_content/content/media/16638294-a730-3dfd-d237-821e0a6bf551: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/05_portal_content/content/media/16638294-a730-3dfd-d237-821e0a6bf551 -------------------------------------------------------------------------------- /infra/05_configuration/api-management/05_portal_content/content/media/16638294-a730-3dfd-d237-821e0a6bf551.info: -------------------------------------------------------------------------------- 1 | {"contentType":"image/png"} -------------------------------------------------------------------------------- /infra/05_configuration/api-management/05_portal_content/content/media/51592220-9f28-3a01-485a-2d29d50ed02d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/05_portal_content/content/media/51592220-9f28-3a01-485a-2d29d50ed02d -------------------------------------------------------------------------------- /infra/05_configuration/api-management/05_portal_content/content/media/51592220-9f28-3a01-485a-2d29d50ed02d.info: -------------------------------------------------------------------------------- 1 | {"contentType":"image/png"} -------------------------------------------------------------------------------- /infra/05_configuration/api-management/05_portal_content/content/media/548cf4f4-9b2e-9d99-588c-35237e9b8988: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/05_portal_content/content/media/548cf4f4-9b2e-9d99-588c-35237e9b8988 -------------------------------------------------------------------------------- /infra/05_configuration/api-management/05_portal_content/content/media/548cf4f4-9b2e-9d99-588c-35237e9b8988.info: -------------------------------------------------------------------------------- 1 | {"contentType":"image/png"} -------------------------------------------------------------------------------- /infra/05_configuration/api-management/05_portal_content/content/media/9d0e0246-b8ed-20f9-d319-2d3aa5e57638: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/05_portal_content/content/media/9d0e0246-b8ed-20f9-d319-2d3aa5e57638 -------------------------------------------------------------------------------- /infra/05_configuration/api-management/05_portal_content/content/media/9d0e0246-b8ed-20f9-d319-2d3aa5e57638.info: -------------------------------------------------------------------------------- 1 | {"contentType":"image/jpeg"} -------------------------------------------------------------------------------- /infra/05_configuration/api-management/05_portal_content/content/media/bb748139-5872-96ec-24e8-b4b85630b0c2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/05_portal_content/content/media/bb748139-5872-96ec-24e8-b4b85630b0c2 -------------------------------------------------------------------------------- /infra/05_configuration/api-management/05_portal_content/content/media/bb748139-5872-96ec-24e8-b4b85630b0c2.info: -------------------------------------------------------------------------------- 1 | {"contentType":"image/png"} -------------------------------------------------------------------------------- /infra/05_configuration/api-management/05_portal_content/content/media/c39b5579-9252-cb2b-0f9a-bee1aa99798b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/05_portal_content/content/media/c39b5579-9252-cb2b-0f9a-bee1aa99798b -------------------------------------------------------------------------------- /infra/05_configuration/api-management/05_portal_content/content/media/c39b5579-9252-cb2b-0f9a-bee1aa99798b.info: -------------------------------------------------------------------------------- 1 | {"contentType":"image/png"} -------------------------------------------------------------------------------- /infra/05_configuration/api-management/05_portal_content/content/media/c6a0071a-9878-42ee-02f7-2bb3f947a972: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/05_portal_content/content/media/c6a0071a-9878-42ee-02f7-2bb3f947a972 -------------------------------------------------------------------------------- /infra/05_configuration/api-management/05_portal_content/content/media/c6a0071a-9878-42ee-02f7-2bb3f947a972.info: -------------------------------------------------------------------------------- 1 | {"contentType":"image/png"} -------------------------------------------------------------------------------- /infra/05_configuration/api-management/05_portal_content/content/media/ce8c6f3d-2c59-635f-5c4d-9173f384eba7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/05_portal_content/content/media/ce8c6f3d-2c59-635f-5c4d-9173f384eba7 -------------------------------------------------------------------------------- /infra/05_configuration/api-management/05_portal_content/content/media/ce8c6f3d-2c59-635f-5c4d-9173f384eba7.info: -------------------------------------------------------------------------------- 1 | {"contentType":"image/png"} -------------------------------------------------------------------------------- /infra/05_configuration/api-management/05_portal_content/content/media/d6b9fe83-0a0b-e511-e533-ca5535b168d9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/05_portal_content/content/media/d6b9fe83-0a0b-e511-e533-ca5535b168d9 -------------------------------------------------------------------------------- /infra/05_configuration/api-management/05_portal_content/content/media/d6b9fe83-0a0b-e511-e533-ca5535b168d9.info: -------------------------------------------------------------------------------- 1 | {"contentType":"image/jpeg"} -------------------------------------------------------------------------------- /infra/05_configuration/api-management/05_portal_content/deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/05_portal_content/deploy.ps1 -------------------------------------------------------------------------------- /infra/05_configuration/api-management/05_portal_content/scripts/capture.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/05_portal_content/scripts/capture.bat -------------------------------------------------------------------------------- /infra/05_configuration/api-management/05_portal_content/scripts/capture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/05_portal_content/scripts/capture.js -------------------------------------------------------------------------------- /infra/05_configuration/api-management/05_portal_content/scripts/cleanup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/05_portal_content/scripts/cleanup.bat -------------------------------------------------------------------------------- /infra/05_configuration/api-management/05_portal_content/scripts/cleanup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/05_portal_content/scripts/cleanup.js -------------------------------------------------------------------------------- /infra/05_configuration/api-management/05_portal_content/scripts/generate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/05_portal_content/scripts/generate.bat -------------------------------------------------------------------------------- /infra/05_configuration/api-management/05_portal_content/scripts/generate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/05_portal_content/scripts/generate.js -------------------------------------------------------------------------------- /infra/05_configuration/api-management/05_portal_content/scripts/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/05_portal_content/scripts/generate.sh -------------------------------------------------------------------------------- /infra/05_configuration/api-management/05_portal_content/scripts/gtm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/05_portal_content/scripts/gtm.js -------------------------------------------------------------------------------- /infra/05_configuration/api-management/05_portal_content/scripts/migrate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/05_portal_content/scripts/migrate.bat -------------------------------------------------------------------------------- /infra/05_configuration/api-management/05_portal_content/scripts/migrate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/05_portal_content/scripts/migrate.js -------------------------------------------------------------------------------- /infra/05_configuration/api-management/05_portal_content/scripts/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/05_portal_content/scripts/package-lock.json -------------------------------------------------------------------------------- /infra/05_configuration/api-management/05_portal_content/scripts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/05_portal_content/scripts/package.json -------------------------------------------------------------------------------- /infra/05_configuration/api-management/05_portal_content/scripts/portal-content-export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/05_portal_content/scripts/portal-content-export.js -------------------------------------------------------------------------------- /infra/05_configuration/api-management/05_portal_content/scripts/portal-content-export.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/05_portal_content/scripts/portal-content-export.ps1 -------------------------------------------------------------------------------- /infra/05_configuration/api-management/05_portal_content/scripts/portal-content-import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/05_portal_content/scripts/portal-content-import.js -------------------------------------------------------------------------------- /infra/05_configuration/api-management/05_portal_content/scripts/updatecontenturl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/05_portal_content/scripts/updatecontenturl.js -------------------------------------------------------------------------------- /infra/05_configuration/api-management/05_portal_content/scripts/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/05_portal_content/scripts/utils.js -------------------------------------------------------------------------------- /infra/05_configuration/api-management/06_portal_config/deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/06_portal_config/deploy.ps1 -------------------------------------------------------------------------------- /infra/05_configuration/api-management/06_portal_config/portal-config.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/06_portal_config/portal-config.bicep -------------------------------------------------------------------------------- /infra/05_configuration/api-management/07_portal_rbac/deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/07_portal_rbac/deploy.ps1 -------------------------------------------------------------------------------- /infra/05_configuration/api-management/07_portal_rbac/portal-rbac.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/07_portal_rbac/portal-rbac.bicep -------------------------------------------------------------------------------- /infra/05_configuration/api-management/api-management-properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/api-management-properties.json -------------------------------------------------------------------------------- /infra/05_configuration/api-management/api-management.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/api-management.bicep -------------------------------------------------------------------------------- /infra/05_configuration/api-management/deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/api-management/deploy.ps1 -------------------------------------------------------------------------------- /infra/05_configuration/configuration.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/configuration.bicep -------------------------------------------------------------------------------- /infra/05_configuration/deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/05_configuration/deploy.ps1 -------------------------------------------------------------------------------- /infra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/README.md -------------------------------------------------------------------------------- /infra/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/TODO.md -------------------------------------------------------------------------------- /infra/bicepconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/bicepconfig.json -------------------------------------------------------------------------------- /infra/deploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/deploy.ps1 -------------------------------------------------------------------------------- /infra/infra-naming.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/infra-naming.bicep -------------------------------------------------------------------------------- /infra/infra-parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/infra-parameters.json -------------------------------------------------------------------------------- /infra/infra-shared.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/infra-shared.bicep -------------------------------------------------------------------------------- /infra/infra.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/infra.bicep -------------------------------------------------------------------------------- /infra/landing_zones/api-management.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/landing_zones/api-management.bicep -------------------------------------------------------------------------------- /infra/landing_zones/web-application.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/landing_zones/web-application.bicep -------------------------------------------------------------------------------- /infra/modules/api-management-api-operation.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/api-management-api-operation.bicep -------------------------------------------------------------------------------- /infra/modules/api-management-api-schemas.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/api-management-api-schemas.bicep -------------------------------------------------------------------------------- /infra/modules/api-management-api.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/api-management-api.bicep -------------------------------------------------------------------------------- /infra/modules/api-management-app-insights-api-logger.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/api-management-app-insights-api-logger.bicep -------------------------------------------------------------------------------- /infra/modules/api-management-app-insights-global-logger.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/api-management-app-insights-global-logger.bicep -------------------------------------------------------------------------------- /infra/modules/api-management-backend.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/api-management-backend.bicep -------------------------------------------------------------------------------- /infra/modules/api-management-backup.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/api-management-backup.bicep -------------------------------------------------------------------------------- /infra/modules/api-management-group-aad.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/api-management-group-aad.bicep -------------------------------------------------------------------------------- /infra/modules/api-management-log-analytics-diagnostics.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/api-management-log-analytics-diagnostics.bicep -------------------------------------------------------------------------------- /infra/modules/api-management-named-values.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/api-management-named-values.bicep -------------------------------------------------------------------------------- /infra/modules/api-management-policy-fragment.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/api-management-policy-fragment.bicep -------------------------------------------------------------------------------- /infra/modules/api-management-policy.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/api-management-policy.bicep -------------------------------------------------------------------------------- /infra/modules/api-management-portal-aad.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/api-management-portal-aad.bicep -------------------------------------------------------------------------------- /infra/modules/api-management-product.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/api-management-product.bicep -------------------------------------------------------------------------------- /infra/modules/api-management-remove-defaults.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/api-management-remove-defaults.bicep -------------------------------------------------------------------------------- /infra/modules/api-management-schema.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/api-management-schema.bicep -------------------------------------------------------------------------------- /infra/modules/api-management-subscription.bicep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infra/modules/api-management.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/api-management.bicep -------------------------------------------------------------------------------- /infra/modules/app-configuration-setting-secret.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/app-configuration-setting-secret.bicep -------------------------------------------------------------------------------- /infra/modules/app-configuration-setting.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/app-configuration-setting.bicep -------------------------------------------------------------------------------- /infra/modules/app-configuration.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/app-configuration.bicep -------------------------------------------------------------------------------- /infra/modules/app-service-current-settings.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/app-service-current-settings.bicep -------------------------------------------------------------------------------- /infra/modules/app-service-plan.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/app-service-plan.bicep -------------------------------------------------------------------------------- /infra/modules/app-service.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/app-service.bicep -------------------------------------------------------------------------------- /infra/modules/application-insights.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/application-insights.bicep -------------------------------------------------------------------------------- /infra/modules/budget-alert-resource-group.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/budget-alert-resource-group.bicep -------------------------------------------------------------------------------- /infra/modules/budget-alert-subscription.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/budget-alert-subscription.bicep -------------------------------------------------------------------------------- /infra/modules/container-app.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/container-app.bicep -------------------------------------------------------------------------------- /infra/modules/container-apps-environment.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/container-apps-environment.bicep -------------------------------------------------------------------------------- /infra/modules/container-registry.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/container-registry.bicep -------------------------------------------------------------------------------- /infra/modules/deployment-script.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/deployment-script.bicep -------------------------------------------------------------------------------- /infra/modules/key-vault-secret.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/key-vault-secret.bicep -------------------------------------------------------------------------------- /infra/modules/key-vault.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/key-vault.bicep -------------------------------------------------------------------------------- /infra/modules/log-analytics-workspace.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/log-analytics-workspace.bicep -------------------------------------------------------------------------------- /infra/modules/policy-assignment-subscription.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/policy-assignment-subscription.bicep -------------------------------------------------------------------------------- /infra/modules/policy-definition-subscription.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/policy-definition-subscription.bicep -------------------------------------------------------------------------------- /infra/modules/private-endpoint.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/private-endpoint.bicep -------------------------------------------------------------------------------- /infra/modules/redis-cache.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/redis-cache.bicep -------------------------------------------------------------------------------- /infra/modules/resource-group.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/resource-group.bicep -------------------------------------------------------------------------------- /infra/modules/role-assignment-api-management.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/role-assignment-api-management.bicep -------------------------------------------------------------------------------- /infra/modules/role-assignment-app-configuration.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/role-assignment-app-configuration.bicep -------------------------------------------------------------------------------- /infra/modules/role-assignment-container-registry.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/role-assignment-container-registry.bicep -------------------------------------------------------------------------------- /infra/modules/role-assignment-key-vault.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/role-assignment-key-vault.bicep -------------------------------------------------------------------------------- /infra/modules/role-assignment-resource-group.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/role-assignment-resource-group.bicep -------------------------------------------------------------------------------- /infra/modules/role-assignment-sql-database-array.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/role-assignment-sql-database-array.bicep -------------------------------------------------------------------------------- /infra/modules/role-assignment-sql-database.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/role-assignment-sql-database.bicep -------------------------------------------------------------------------------- /infra/modules/role-assignment-sql-server.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/role-assignment-sql-server.bicep -------------------------------------------------------------------------------- /infra/modules/role-assignment-storage-account.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/role-assignment-storage-account.bicep -------------------------------------------------------------------------------- /infra/modules/role-assignment-subscription.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/role-assignment-subscription.bicep -------------------------------------------------------------------------------- /infra/modules/scripts/api-management-remove-defaults.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/scripts/api-management-remove-defaults.ps1 -------------------------------------------------------------------------------- /infra/modules/scripts/container-apps-upsert.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/scripts/container-apps-upsert.ps1 -------------------------------------------------------------------------------- /infra/modules/scripts/sql-database-role-assignment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/scripts/sql-database-role-assignment.ps1 -------------------------------------------------------------------------------- /infra/modules/scripts/storage-account-upload-blob.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/scripts/storage-account-upload-blob.ps1 -------------------------------------------------------------------------------- /infra/modules/sql-database.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/sql-database.bicep -------------------------------------------------------------------------------- /infra/modules/sql-server.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/sql-server.bicep -------------------------------------------------------------------------------- /infra/modules/storage-account-upload-blob.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/storage-account-upload-blob.bicep -------------------------------------------------------------------------------- /infra/modules/storage-account.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/storage-account.bicep -------------------------------------------------------------------------------- /infra/modules/tags-subscription.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/tags-subscription.bicep -------------------------------------------------------------------------------- /infra/modules/user-assigned-identity.bicep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/modules/user-assigned-identity.bicep -------------------------------------------------------------------------------- /infra/policies/definitions/policy-definition-apimanagement-deny-api_with_http.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/policies/definitions/policy-definition-apimanagement-deny-api_with_http.json -------------------------------------------------------------------------------- /infra/policies/definitions/policy-definition-apimanagement-deny-api_with_invalid_subscription_key_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/policies/definitions/policy-definition-apimanagement-deny-api_with_invalid_subscription_key_name.json -------------------------------------------------------------------------------- /infra/policies/definitions/policy-definition-apimanagement-deny-api_without_subscription_key.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/policies/definitions/policy-definition-apimanagement-deny-api_without_subscription_key.json -------------------------------------------------------------------------------- /infra/tools/generate-role-assignment-module/generate-role-assignment-module.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/tools/generate-role-assignment-module/generate-role-assignment-module.ps1 -------------------------------------------------------------------------------- /infra/tools/generate-role-assignment-module/role-assignment-template.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/infra/tools/generate-role-assignment-module/role-assignment-template.txt -------------------------------------------------------------------------------- /media/Logo.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/media/Logo.pptx -------------------------------------------------------------------------------- /media/ftw-logo-with-icon-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/media/ftw-logo-with-icon-black.png -------------------------------------------------------------------------------- /media/ftw-logo-with-icon-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/media/ftw-logo-with-icon-white.png -------------------------------------------------------------------------------- /media/ftw-logo-without-icon-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/media/ftw-logo-without-icon-black.png -------------------------------------------------------------------------------- /media/ftw-logo-without-icon-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/media/ftw-logo-without-icon-white.png -------------------------------------------------------------------------------- /src/hotels-app/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/.dockerignore -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.Common/Constants/SchemaNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.Common/Constants/SchemaNames.cs -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.Common/Ftw.Hotels.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.Common/Ftw.Hotels.Common.csproj -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.Common/WebAppBuilderExtensions/ConfigurationExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.Common/WebAppBuilderExtensions/ConfigurationExtension.cs -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.Common/WebAppBuilderExtensions/ErrorHandlingExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.Common/WebAppBuilderExtensions/ErrorHandlingExtension.cs -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.Common/WebAppBuilderExtensions/LoggingExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.Common/WebAppBuilderExtensions/LoggingExtension.cs -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.HotelBooking/Api/Federation/RoomAvailabilityExtension.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.HotelBooking/Api/Federation/RoomAvailabilityExtension.graphql -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.HotelBooking/Api/GraphQL/Query.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.HotelBooking/Api/GraphQL/Query.cs -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.HotelBooking/Api/Types/RoomAvailabilityType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.HotelBooking/Api/Types/RoomAvailabilityType.cs -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.HotelBooking/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.HotelBooking/Dockerfile -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.HotelBooking/Ftw.Hotels.HotelBooking.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.HotelBooking/Ftw.Hotels.HotelBooking.csproj -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.HotelBooking/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.HotelBooking/Program.cs -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.HotelBooking/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.HotelBooking/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.HotelBooking/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.HotelBooking/appsettings.Development.json -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.HotelBooking/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.HotelBooking/appsettings.json -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.HotelCatalog/Api/GraphQL/Mutation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.HotelCatalog/Api/GraphQL/Mutation.cs -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.HotelCatalog/Api/GraphQL/Query.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.HotelCatalog/Api/GraphQL/Query.cs -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.HotelCatalog/Api/GraphQL/Subscription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.HotelCatalog/Api/GraphQL/Subscription.cs -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.HotelCatalog/Api/MapProfiles/HotelCatalogProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.HotelCatalog/Api/MapProfiles/HotelCatalogProfile.cs -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.HotelCatalog/Api/Services/HotelCatalogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.HotelCatalog/Api/Services/HotelCatalogService.cs -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.HotelCatalog/Api/Services/IHotelCatalogService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.HotelCatalog/Api/Services/IHotelCatalogService.cs -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.HotelCatalog/Api/Types/CountryType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.HotelCatalog/Api/Types/CountryType.cs -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.HotelCatalog/Api/Types/HotelType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.HotelCatalog/Api/Types/HotelType.cs -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.HotelCatalog/Api/Types/RoomTemperature.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.HotelCatalog/Api/Types/RoomTemperature.cs -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.HotelCatalog/Api/Types/RoomType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.HotelCatalog/Api/Types/RoomType.cs -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.HotelCatalog/Data/DbContexts/HotelCatalogDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.HotelCatalog/Data/DbContexts/HotelCatalogDbContext.cs -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.HotelCatalog/Data/Migrations/20221209182554_initial.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.HotelCatalog/Data/Migrations/20221209182554_initial.Designer.cs -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.HotelCatalog/Data/Migrations/20221209182554_initial.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.HotelCatalog/Data/Migrations/20221209182554_initial.cs -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.HotelCatalog/Data/Migrations/20221209203401_countrySeed.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.HotelCatalog/Data/Migrations/20221209203401_countrySeed.Designer.cs -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.HotelCatalog/Data/Migrations/20221209203401_countrySeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.HotelCatalog/Data/Migrations/20221209203401_countrySeed.cs -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.HotelCatalog/Data/Migrations/20230103073556_hotels-rooms.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.HotelCatalog/Data/Migrations/20230103073556_hotels-rooms.Designer.cs -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.HotelCatalog/Data/Migrations/20230103073556_hotels-rooms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.HotelCatalog/Data/Migrations/20230103073556_hotels-rooms.cs -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.HotelCatalog/Data/Migrations/HotelCatalogDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.HotelCatalog/Data/Migrations/HotelCatalogDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.HotelCatalog/Data/Migrations/HotelCatalogDbMigrator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.HotelCatalog/Data/Migrations/HotelCatalogDbMigrator.cs -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.HotelCatalog/Data/Models/BaseEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.HotelCatalog/Data/Models/BaseEntity.cs -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.HotelCatalog/Data/Models/Country.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.HotelCatalog/Data/Models/Country.cs -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.HotelCatalog/Data/Models/Hotel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.HotelCatalog/Data/Models/Hotel.cs -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.HotelCatalog/Data/Models/Room.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.HotelCatalog/Data/Models/Room.cs -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.HotelCatalog/Data/Repositories/HotelCatalogRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.HotelCatalog/Data/Repositories/HotelCatalogRepository.cs -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.HotelCatalog/Data/Repositories/IHotelCatalogRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.HotelCatalog/Data/Repositories/IHotelCatalogRepository.cs -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.HotelCatalog/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.HotelCatalog/Dockerfile -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.HotelCatalog/Ftw.Hotels.HotelCatalog.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.HotelCatalog/Ftw.Hotels.HotelCatalog.csproj -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.HotelCatalog/IoT/RoomTemperatureGeneratorHostedService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.HotelCatalog/IoT/RoomTemperatureGeneratorHostedService.cs -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.HotelCatalog/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.HotelCatalog/Program.cs -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.HotelCatalog/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.HotelCatalog/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.HotelCatalog/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.HotelCatalog/appsettings.json -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.HotelPricing/Api/Federation/RoomPriceExtension.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.HotelPricing/Api/Federation/RoomPriceExtension.graphql -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.HotelPricing/Api/GraphQL/Query.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.HotelPricing/Api/GraphQL/Query.cs -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.HotelPricing/Api/GraphQL/RoomPriceDataLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.HotelPricing/Api/GraphQL/RoomPriceDataLoader.cs -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.HotelPricing/Api/Types/RoomPriceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.HotelPricing/Api/Types/RoomPriceType.cs -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.HotelPricing/Data/RoomPriceCalculator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.HotelPricing/Data/RoomPriceCalculator.cs -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.HotelPricing/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.HotelPricing/Dockerfile -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.HotelPricing/Ftw.Hotels.HotelPricing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.HotelPricing/Ftw.Hotels.HotelPricing.csproj -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.HotelPricing/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.HotelPricing/Program.cs -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.HotelPricing/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.HotelPricing/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.HotelPricing/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.HotelPricing/appsettings.Development.json -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.HotelPricing/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.HotelPricing/appsettings.json -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.SuperGraph/Api/GraphQL/Query.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.SuperGraph/Api/GraphQL/Query.cs -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.SuperGraph/Api/Stitching/HotelWeatherExtension.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.SuperGraph/Api/Stitching/HotelWeatherExtension.graphql -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.SuperGraph/Api/Types/WeatherInfoType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.SuperGraph/Api/Types/WeatherInfoType.cs -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.SuperGraph/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.SuperGraph/Dockerfile -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.SuperGraph/Ftw.Hotels.SuperGraph.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.SuperGraph/Ftw.Hotels.SuperGraph.csproj -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.SuperGraph/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.SuperGraph/Program.cs -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.SuperGraph/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.SuperGraph/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.SuperGraph/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.SuperGraph/appsettings.Development.json -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.SuperGraph/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.SuperGraph/appsettings.json -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.SuperGraph/appsettings.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.SuperGraph/appsettings.local.json -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.SuperGraph/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.SuperGraph/wwwroot/index.html -------------------------------------------------------------------------------- /src/hotels-app/Ftw.Hotels.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/hotels-app/Ftw.Hotels.sln -------------------------------------------------------------------------------- /src/real-estate-app/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/real-estate-app/.dockerignore -------------------------------------------------------------------------------- /src/real-estate-app/Ftw.RealEstate.Rental/Api/GraphQL/Query.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/real-estate-app/Ftw.RealEstate.Rental/Api/GraphQL/Query.cs -------------------------------------------------------------------------------- /src/real-estate-app/Ftw.RealEstate.Rental/Api/Types/ApartmentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/real-estate-app/Ftw.RealEstate.Rental/Api/Types/ApartmentType.cs -------------------------------------------------------------------------------- /src/real-estate-app/Ftw.RealEstate.Rental/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/real-estate-app/Ftw.RealEstate.Rental/Dockerfile -------------------------------------------------------------------------------- /src/real-estate-app/Ftw.RealEstate.Rental/Ftw.RealEstate.Rental.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/real-estate-app/Ftw.RealEstate.Rental/Ftw.RealEstate.Rental.csproj -------------------------------------------------------------------------------- /src/real-estate-app/Ftw.RealEstate.Rental/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/real-estate-app/Ftw.RealEstate.Rental/Program.cs -------------------------------------------------------------------------------- /src/real-estate-app/Ftw.RealEstate.Rental/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/real-estate-app/Ftw.RealEstate.Rental/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/real-estate-app/Ftw.RealEstate.Rental/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/real-estate-app/Ftw.RealEstate.Rental/appsettings.Development.json -------------------------------------------------------------------------------- /src/real-estate-app/Ftw.RealEstate.Rental/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/real-estate-app/Ftw.RealEstate.Rental/appsettings.json -------------------------------------------------------------------------------- /src/real-estate-app/Ftw.RealEstate.Sales/Api/Endpoints/SalesEndpoints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/real-estate-app/Ftw.RealEstate.Sales/Api/Endpoints/SalesEndpoints.cs -------------------------------------------------------------------------------- /src/real-estate-app/Ftw.RealEstate.Sales/Api/Schemas/ApartmentDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/real-estate-app/Ftw.RealEstate.Sales/Api/Schemas/ApartmentDto.cs -------------------------------------------------------------------------------- /src/real-estate-app/Ftw.RealEstate.Sales/Api/Schemas/HouseDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/real-estate-app/Ftw.RealEstate.Sales/Api/Schemas/HouseDto.cs -------------------------------------------------------------------------------- /src/real-estate-app/Ftw.RealEstate.Sales/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/real-estate-app/Ftw.RealEstate.Sales/Dockerfile -------------------------------------------------------------------------------- /src/real-estate-app/Ftw.RealEstate.Sales/Ftw.RealEstate.Sales.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/real-estate-app/Ftw.RealEstate.Sales/Ftw.RealEstate.Sales.csproj -------------------------------------------------------------------------------- /src/real-estate-app/Ftw.RealEstate.Sales/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/real-estate-app/Ftw.RealEstate.Sales/Program.cs -------------------------------------------------------------------------------- /src/real-estate-app/Ftw.RealEstate.Sales/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/real-estate-app/Ftw.RealEstate.Sales/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/real-estate-app/Ftw.RealEstate.Sales/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/real-estate-app/Ftw.RealEstate.Sales/appsettings.Development.json -------------------------------------------------------------------------------- /src/real-estate-app/Ftw.RealEstate.Sales/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/real-estate-app/Ftw.RealEstate.Sales/appsettings.json -------------------------------------------------------------------------------- /src/real-estate-app/Ftw.RealEstate.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/your-azure-coach/ftw-ventures/HEAD/src/real-estate-app/Ftw.RealEstate.sln --------------------------------------------------------------------------------