-
Notifications
You must be signed in to change notification settings - Fork 0
/
appsettings.Development.json
55 lines (55 loc) · 1.18 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
51
52
53
54
55
{
"ConnectionStrings": {
"DB": "Host=localhost;Port=5432;Pooling=true;Database=gs_test_db;User Id=postgres;Password=TestP@SSword42; Include Error Detail=True"
},
"AWS": {
"Region": "sa-east-1",
"AwsAccessKeyId": "",
"AwsSecretAccessKey": "",
"S3": {
"BucketName": "gs_test_bucket",
"BucketAcessKey": "",
"BucketSecretKey": ""
}
},
"Authentication": {
"Schemes": {
"Bearer": {
"Secret": "PlaceholderPlaceholderPlaceholderPlaceholderPlaceholderPlaceholderPlaceholder",
"Issuer": "dotnet-server-jwt"
}
}
},
"Cors": {
"Origins": "http://localhost:7063"
},
"Serilog": {
"MinimumLevel": {
"Default": "Information",
"Override": {
"Microsoft": "Warning",
"System": "Warning"
}
},
"Using": [
"Serilog.Sinks.Console"
],
"WriteTo": [
{
"Name": "Console"
}
],
"Enrich": [
"FromLogContex",
"WithMachineName",
"WithProcessId",
"WithThreadId",
"WithMemoryUsage"
]
},
"Kestrel": {
"EndpointDefaults": {
"Protocols": "Http2"
}
}
}