-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapphost.run.json
More file actions
31 lines (31 loc) · 1.15 KB
/
apphost.run.json
File metadata and controls
31 lines (31 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"$schema": "https://json.schemastore.org/launchsettings.json",
"profiles": {
"https": {
"commandName": "Project",
"dotnetRunMessages": true,
"launchBrowser": true,
"applicationUrl": "https://localhost:17041;http://localhost:15016",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development",
"DOTNET_ENVIRONMENT": "Development",
"ASPIRE_DASHBOARD_OTLP_ENDPOINT_URL": "https://localhost:21059",
"ASPIRE_DASHBOARD_MCP_ENDPOINT_URL": "https://localhost:23067",
"ASPIRE_RESOURCE_SERVICE_ENDPOINT_URL": "https://localhost:22202"
}
},
"http": {
"commandName": "Project",
"dotnetRunMessages": true,
"launchBrowser": true,
"applicationUrl": "http://localhost:15016",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development",
"DOTNET_ENVIRONMENT": "Development",
"ASPIRE_DASHBOARD_OTLP_ENDPOINT_URL": "http://localhost:19118",
"ASPIRE_DASHBOARD_MCP_ENDPOINT_URL": "http://localhost:18058",
"ASPIRE_RESOURCE_SERVICE_ENDPOINT_URL": "http://localhost:20129"
}
}
}
}