Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"appHostPath": "../apphost.ts",
"language": "typescript/nodejs",
"channel": "local",
Copy link

Copilot AI Feb 10, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

channel is set to "local", but the CLI channel names are expected to be values like default, stable, staging, daily, or pr-*. Using an unrecognized channel can break aspire add / package resolution in this ValidationAppHost directory. Consider changing this to default (or removing the property to fall back to defaults), or setting it to an existing pr-* channel if this apphost is meant to track a PR hive.

Suggested change
"channel": "local",
"channel": "default",

Copilot uses AI. Check for mistakes.
"sdkVersion": "13.2.0-preview.1.26081.1",
"packages": {
"Aspire.Hosting.RabbitMQ": "13.2.0-preview.1.26081.1"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"profiles": {
"https": {
"applicationUrl": "https://localhost:18076;http://localhost:48822",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development",
"DOTNET_ENVIRONMENT": "Development",
"ASPIRE_DASHBOARD_OTLP_ENDPOINT_URL": "https://localhost:56384",
"ASPIRE_RESOURCE_SERVICE_ENDPOINT_URL": "https://localhost:64883"
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import { createBuilder, ContainerLifetime } from './.modules/aspire.js';

const builder = await createBuilder();

const rabbitmq = await builder.addRabbitMQ("messaging");
await rabbitmq.withDataVolume();
await rabbitmq.withManagementPlugin();

const rabbitmq2 = await builder
.addRabbitMQ("messaging2")
.withLifetime(ContainerLifetime.Persistent)
.withDataVolume()
.withManagementPluginWithPort({ port: 15673 });

await builder.build().run();
Loading
Loading