-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathappsettings.json
45 lines (45 loc) · 1.27 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
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft": "Warning",
"Microsoft.Hosting.Lifetime": "Information"
}
},
"AllowedHosts": "*",
"DBConnection": "server=mariadb;database=test;user=root;password=takenfrombitnami; convert zero datetime=True;Charset=utf8; Connect Timeout=30; SslMode=none",
"MINIO_HOST":"minio:9000",
"MINIO_KEY":"minio",
"MINIO_SECRET":"minio123",
"JAEGER_SERVICE_NAME": "sky-sniper",
"OTEL_EXPORTER_OTLP_TRACES_ENDPOINT": "http://jaeger",
"KAFKA_HOST": "kafka:9092",
"CRAFTS_BASE_URL": "http://localhost:5009",
"JAEGER_SAMPLER_TYPE": "ratelimiting",
"JAEGER_SAMPLER_PARAM": "2",
"JWT_SECRET": "secret",
"ITEMS_BASE_URL": "http://localhost:5014",
"FLIPTRACKER_BASE_URL": "http://localhost:5017",
"REDIS_HOST": "redis",
"IS_MANAGER": false,
"NO_PRODUCE": false,
"KAFKA": {
"BROKERS": "kafka:9092",
"USERNAME": "",
"PASSWORD": "",
"TLS": {
"CERTIFICATE_LOCATION": "",
"CA_LOCATION": "",
"KEY_LOCATION": ""
},
"REPLICATION_FACTOR": "1"
},
"TOPICS": {
"NEW_AUCTION": "sky-newauction",
"SOLD_AUCTION": "sky-soldauction",
"FLIP": "sky-flip",
"AH_SUMARY": "sky-ahsumary",
"LOW_PRICED": "sky-lowpriced",
"BAZAAR": "sky-bazaar"
}
}