// Copyright (c) HelloShop Corporation. All rights reserved. // See the license file in the project root for more information. using CommunityToolkit.Aspire.Hosting.Dapr; using HelloShop.AppHost.Extensions; var builder = DistributedApplication.CreateBuilder(args); var cache = builder.AddRedis("cache", port: 6380).WithPersistence(); var rabbitmq = builder.AddRabbitMQ("rabbitmq").WithManagementPlugin(); var identityService = builder.AddProject("identityservice") .WithDaprSidecar(); DaprSidecarOptions daprSidecarOptions = new() { ResourcesPaths = ["DaprComponents"] }; var orderingService = builder.AddProject("orderingservice") .WithReference(identityService) .WithDaprSidecar(options => { options.WithOptions(daprSidecarOptions).WithReference(rabbitmq).WithReference(cache); }); var productService = builder.AddProject("productservice") .WithReference(identityService) .WithDaprSidecar(options => { options.WithOptions(daprSidecarOptions).WithReference(rabbitmq).WithReference(cache); }); ; var basketService = builder.AddProject("basketservice") .WithReference(identityService) .WithReference(cache) .WithDaprSidecar(options => { options.WithOptions(daprSidecarOptions).WithReference(rabbitmq).WithReference(cache); }); var apiservice = builder.AddProject("apiservice") .WithReference(identityService) .WithReference(orderingService) .WithReference(productService) .WithReference(basketService) .WithDaprSidecar(); builder.AddProject("webapp") .WithReference(apiservice) .WithDaprSidecar(); builder.Build().Run();