-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathappsettings.json
48 lines (48 loc) · 1.31 KB
/
appsettings.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
{
"Serilog": {
"MinimumLevel": {
"Default": "Information",
"Override": {
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information",
"Microsoft.AspNetCore": "Warning",
"System": "Warning",
"MassTransit": "Debug",
"Microsoft.EntityFrameworkCore.Database.Command": "Warning",
"Microsoft.EntityFrameworkCore": "Warning"
}
}
},
"RedisOptions": {
"Host": "localhost",
"Port": 6379
},
"LeaderBoardOptions": {
"UseReadCacheAside": true,
"UseReadThrough": false,
"UseWriteCacheAside": true,
"UseWriteBehind": false,
"UseWriteThrough": false,
"CleanupRedisOnStart": true,
"UseCacheWarmUp": true,
"SeedInitialData": true
},
"EventStoreDBOptions": {
"Host": "localhost",
"HttpPort": 2113,
"TcpPort": 1113
},
"PostgresOptions": {
"ConnectionString": "Server=localhost;Port=5432;Database=leaderboard;User Id=postgres;Password=postgres;Include Error Detail=true",
"UseInMemory": false
},
"ReadThroughHttpClientOptions": {
"BaseAddress": "http://localhost:4000",
"PlayersScoreEndpoint": "global-board/scores"
},
"WriteThroughHttpClientOptions": {
"BaseAddress": "http://localhost:7000",
"PlayersScoreEndpoint": "global-board/scores"
},
"AllowedHosts": "*"
}