Skip to content

Commit

Permalink
appsettings cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
TimHess committed Feb 9, 2024
1 parent 5739019 commit f3e5484
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 21 deletions.
18 changes: 7 additions & 11 deletions src/InitializrService/Resources/uiconfig.Development.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,26 +16,22 @@
"default": "3.0.0",
"values": [
{
"id": "2.4.4",
"name": "Steeltoe 2.4.4 Maintenance Release"
},
{
"id": "3.0.0",
"name": "Steeltoe 3.0.0 GA"
"id": "3.2.6",
"name": "Steeltoe 3.2.6 GA"
}
]
},
"dotNetFramework": {
"type": "single-select",
"default": "netcoreapp3.1",
"default": "net8.0",
"values": [
{
"id": "netcoreapp2.1",
"name": ".NET Core 2.1"
"id": "net6.0",
"name": ".NET 6.0"
},
{
"id": "netcoreapp3.1",
"name": ".NET Core 3.1"
"id": "net8.0",
"name": ".NET 8.0"
}
]
},
Expand Down
11 changes: 10 additions & 1 deletion src/InitializrService/appsettings.Development.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"Uri": "http://localhost:1922/api"
},
"UiConfig": {
"Path": "Resources/uiconfig.Development.json"
//"Path": "Resources/uiconfig.Development.json"
}
},
"Spring": {
Expand All @@ -18,5 +18,14 @@
"LogLevel": {
"Steeltoe.InitializrService": "Debug"
}
},
"Management": {
"Endpoints": {
"Actuator": {
"Exposure": {
"Include": [ "*" ]
}
}
}
}
}
9 changes: 0 additions & 9 deletions src/InitializrService/appsettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,5 @@
"Microsoft.Hosting.Lifetime": "Information",
"Steeltoe.InitializrService": "Information"
}
},
"Management": {
"Endpoints": {
"Actuator":{
"Exposure": {
"Include": [ "*" ]
}
}
}
}
}

0 comments on commit f3e5484

Please sign in to comment.