-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappsettings.json
41 lines (41 loc) · 1.11 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
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"AllowedHosts": "*",
"DB_CONNECTION": "server=mariadb;user=root;password=takenfrombitnami;database=subscriptions",
"MARIADB_VERSION": "10.5.5",
"JAEGER_AGENT_HOST": "jaeger",
"JAEGER_SERVICE_NAME": "sky-subscriptions",
"JAEGER_SAMPLER_TYPE": "ratelimiting",
"JAEGER_SAMPLER_PARAM": "2",
"FIREBASE_SENDER_ID": "",
"FIREBASE_KEY": "",
"FILTER_BASE_URL": "https://sky.coflnet.com",
"SETTINGS_REDIS_HOST": "redis",
"SETTINGS_BASE_URL": "http://localhost:5004",
"KAFKA": {
"BROKERS": "kafka:9092",
"USERNAME": "",
"PASSWORD": "",
"TLS": {
"CERTIFICATE_LOCATION": "",
"CA_LOCATION": "",
"KEY_LOCATION": ""
},
"REPLICATION_FACTOR": "1"
},
"TOPICS": {
"MISSING_AUCTION": "sky-canceledauction",
"SOLD_AUCTION": "sky-soldauction",
"NEW_AUCTION": "sky-newauction",
"AUCTION_ENDED": "sky-endedauction",
"NEW_BID": "sky-newbid",
"BAZAAR": "sky-bazaar",
"NOTIFICATIONS": "sky-notifications"
}
}