-
Notifications
You must be signed in to change notification settings - Fork 250
/
Copy pathappsettings.Development.json
50 lines (50 loc) · 1.28 KB
/
appsettings.Development.json
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
// Steeltoe: Add schema to get auto-completion.
"$schema": "https://steeltoe.io/schema/v4/schema.json",
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
// Steeltoe: Configure exposure of all actuators.
"Management": {
"Endpoints": {
"Actuator": {
"Exposure": {
"Include": [
"*"
]
}
}
}
},
// Steeltoe: Configure client for Spring Boot Admin.
"Spring": {
"Boot": {
"Admin": {
"Client": {
// For podman compatibility, change host.docker.internal to host.containers.internal
"BasePath": "http://host.docker.internal:8091",
"Metadata": {
"user.name": "actuatorUser",
"user.password": "actuatorPassword"
},
"Url": "http://localhost:9099"
}
}
}
},
// Steeltoe: Set MySQL connection string for non-cloud, local development.
"Steeltoe": {
"Client": {
"MySql": {
"Default": {
"ConnectionString": "Server=localhost;Database=steeltoe;User=steeltoe;Password=steeltoe;Connection Timeout=15"
}
}
}
},
// Steeltoe: Register this application with a Spring Boot Admin server.
"UseSpringBootAdmin": true
}