-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings.Development.json
More file actions
75 lines (75 loc) · 1.93 KB
/
appsettings.Development.json
File metadata and controls
75 lines (75 loc) · 1.93 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"PostgresOptions": {
"Username": "user",
"Password": "password",
"Port": 5432,
"Host": "localhost",
"Database": "postgres",
"Schema": "public",
"AdditionalProperties": "Include Error Detail=true;"
},
"MinioOptions": {
"AccessKey": "SdTsJ57ybu3j1JGSlucK",
"SecretKey": "W92BNeyfg6JFmXsgblnVhkalnCAosoQMiI7yeYEN",
"Url": "http://localhost:9000",
"ProxyUrl": "https://localhost/s3",
"WithSSL": false
},
"TracingOptions": {
"ServiceName": "bacs-api-dev",
"OtlpCollectorUrl": "http://localhost:4317",
"OtlpProtocol": 0,
"EndpointFilter": [
"/healthz",
"/metrics",
"/scalar"
]
},
"Serilog": {
"Using": [
"Serilog.Sinks.Console"
],
"MinimumLevel": {
"Default": "Debug"
},
"WriteTo": [
{
"Name": "Console"
}
],
"Enrich": [
"FromLogContext",
"WithMachineName",
"WithExceptionDetails"
]
},
"Keycloak": {
"Audience": "bacs-api",
"Realm": "bacs",
"AuthServerUrl": "http://localhost:7080/keycloak",
"SslRequired": "none",
"Resource": "bacs-api",
"VerifyTokenAudience": true,
"Credentials": {
"Secret": "Cg2EDljOZ6JJJdIaCS4dqfegAuNPflHn"
},
"ConfidentialPort": 0,
"TokenClockSkew": "00:00:30"
},
"HealthChecksUI": {
"HealthChecks": [
{
"Name": "BaCS API",
"Uri": "http://localhost:5076/healthz"
}
],
"EvaluationTimeInSeconds": 10,
"MinimumSecondsBetweenFailureNotifications": 60
}
}