-
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:17047;http://localhost:15290",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development",
"DOTNET_ENVIRONMENT": "Development",
"ASPIRE_DASHBOARD_OTLP_ENDPOINT_URL": "https://localhost:21174",
"ASPIRE_DASHBOARD_MCP_ENDPOINT_URL": "https://localhost:23175",
"ASPIRE_RESOURCE_SERVICE_ENDPOINT_URL": "https://localhost:22123"
}
},
"http": {
"commandName": "Project",
"dotnetRunMessages": true,
"launchBrowser": true,
"applicationUrl": "http://localhost:15290",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development",
"DOTNET_ENVIRONMENT": "Development",
"ASPIRE_DASHBOARD_OTLP_ENDPOINT_URL": "http://localhost:19219",
"ASPIRE_DASHBOARD_MCP_ENDPOINT_URL": "http://localhost:18148",
"ASPIRE_RESOURCE_SERVICE_ENDPOINT_URL": "http://localhost:20033"
}
}
}
}