-
Notifications
You must be signed in to change notification settings - Fork 275
Expand file tree
/
Copy pathlaunchSettings.json
More file actions
31 lines (31 loc) · 1.12 KB
/
launchSettings.json
File metadata and controls
31 lines (31 loc) · 1.12 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:17196;http://localhost:15048",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development",
"DOTNET_ENVIRONMENT": "Development",
"ASPIRE_DASHBOARD_OTLP_ENDPOINT_URL": "https://localhost:21100",
"ASPIRE_DASHBOARD_MCP_ENDPOINT_URL": "https://localhost:23036",
"ASPIRE_RESOURCE_SERVICE_ENDPOINT_URL": "https://localhost:22230"
}
},
"http": {
"commandName": "Project",
"dotnetRunMessages": true,
"launchBrowser": true,
"applicationUrl": "http://localhost:15048",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development",
"DOTNET_ENVIRONMENT": "Development",
"ASPIRE_DASHBOARD_OTLP_ENDPOINT_URL": "http://localhost:19122",
"ASPIRE_DASHBOARD_MCP_ENDPOINT_URL": "http://localhost:18210",
"ASPIRE_RESOURCE_SERVICE_ENDPOINT_URL": "http://localhost:20059"
}
}
}
}