-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappsettings.DockerDevelopment.json
41 lines (40 loc) · 1.26 KB
/
appsettings.DockerDevelopment.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
{
"ConnectionStrings": {
"event-store-connection": "Host=club-service-postgres:5432;Username=user;Password=password;Database=club-service-event-store",
"read-store-connection": "Host=club-service-postgres:5432;Username=user;Password=password;Database=club-service-read-store",
"login-store-connection": "Host=club-service-postgres:5432;Username=user;Password=password;Database=club-service-login-store"
},
"RedisConfiguration": {
"Host": "club-service-redis:6379",
"PollingInterval": "1",
"Streams": [
{
"StreamName": "club_service_events.public.DomainEvent",
"ConsumerGroup": "club_service_events.domain.events.group",
"DesiredEventTypes": [
"*"
]
},
{
"StreamName": "tournament_events.public.technicaleventenvelope",
"ConsumerGroup": "tournament_service_events.domain.events.group",
"DesiredEventTypes": [
"TOURNAMENT_CONFIRMED",
"TOURNAMENT_CANCELED"
]
}
]
},
"SmtpConfiguration": {
"Host": "localhost",
"Port": "1025",
"SenderEmailAddress": "[email protected]",
"PollingInterval": "10"
},
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
}
}