-
Notifications
You must be signed in to change notification settings - Fork 277
Expand file tree
/
Copy pathlaunchSettings.json
More file actions
29 lines (29 loc) · 1005 Bytes
/
launchSettings.json
File metadata and controls
29 lines (29 loc) · 1005 Bytes
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
{
"$schema": "https://json.schemastore.org/launchsettings.json",
"profiles": {
"https": {
"commandName": "Project",
"dotnetRunMessages": true,
"launchBrowser": false,
"applicationUrl": "https://localhost:17021;http://localhost:15063",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development",
"DOTNET_ENVIRONMENT": "Development",
"ASPIRE_DASHBOARD_OTLP_ENDPOINT_URL": "https://localhost:21154",
"ASPIRE_RESOURCE_SERVICE_ENDPOINT_URL": "https://localhost:22013"
}
},
"http": {
"commandName": "Project",
"dotnetRunMessages": true,
"launchBrowser": false,
"applicationUrl": "http://localhost:15063",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development",
"DOTNET_ENVIRONMENT": "Development",
"ASPIRE_DASHBOARD_OTLP_ENDPOINT_URL": "http://localhost:19177",
"ASPIRE_RESOURCE_SERVICE_ENDPOINT_URL": "http://localhost:20040"
}
}
}
}