Skip to content

Commit

Permalink
push initial launchSettings
Browse files Browse the repository at this point in the history
  • Loading branch information
alexmaude committed Nov 14, 2024
1 parent 6a05ee6 commit b732cf2
Show file tree
Hide file tree
Showing 5 changed files with 86 additions and 0 deletions.
18 changes: 18 additions & 0 deletions template/src/Placeholder.ApiService/Properties/launchSettings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"$schema": "https://json.schemastore.org/launchsettings.json",
"profiles": {
"https": {
"commandName": "Project",
"launchBrowser": true,
"applicationUrl": "http://localhost:7587",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development",
"ASPIRE_ALLOW_UNSECURED_TRANSPORT": "true",
"DOTNET_DASHBOARD_OTLP_ENDPOINT_URL": "https://localhost:19032",
"DOTNET_DASHBOARD_OTLP_HTTP_ENDPOINT_URL": "https://localhost:19032",
"ASPNETCORE_URLS": "http://localhost:42679"
},
"dotnetRunMessages": true
}
}
}
19 changes: 19 additions & 0 deletions template/src/Placeholder.AppHost/Properties/launchSettings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"$schema": "https://json.schemastore.org/launchsettings.json",
"profiles": {
"https": {
"commandName": "Project",
"dotnetRunMessages": true,
"launchBrowser": true,
"applicationUrl": "https://localhost:17257",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development",
"DOTNET_ENVIRONMENT": "Development",
"DOTNET_DASHBOARD_OTLP_ENDPOINT_URL": "https://localhost:21132",
"DOTNET_RESOURCE_SERVICE_ENDPOINT_URL": "https://localhost:22214",
"ASPNETCORE_URLS": "https://localhost:42679"
}
}
}
}

16 changes: 16 additions & 0 deletions template/src/Placeholder.Core/Properties/launchSettings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"iisSettings": {
"windowsAuthentication": false,
"anonymousAuthentication": true
},
"profiles": {
"Placeholder.Core": {
"commandName": "Project",
"launchBrowser": true,
"applicationUrl": "http://localhost:38532",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
}
}
}
17 changes: 17 additions & 0 deletions template/src/Placeholder.Migration/Properties/launchSettings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"$schema": "https://json.schemastore.org/launchsettings.json",
"profiles": {
"https": {
"commandName": "Project",
"launchBrowser": true,
"applicationUrl": "https://localhost:7261",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development",
"DOTNET_DASHBOARD_OTLP_ENDPOINT_URL": "https://localhost:19032",
"DOTNET_DASHBOARD_OTLP_HTTP_ENDPOINT_URL": "https://localhost:19032",
"ASPNETCORE_URLS": "https://localhost:42679"
},
"dotnetRunMessages": true
}
}
}
16 changes: 16 additions & 0 deletions template/src/Placeholder.Web/Properties/launchSettings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"iisSettings": {
"windowsAuthentication": false,
"anonymousAuthentication": true
},
"profiles": {
"Placeholder.Web": {
"commandName": "Project",
"launchBrowser": true,
"applicationUrl": "http://localhost:58497",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
}
}
}

0 comments on commit b732cf2

Please sign in to comment.