-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings.Development.json
More file actions
45 lines (45 loc) · 1 KB
/
appsettings.Development.json
File metadata and controls
45 lines (45 loc) · 1 KB
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
{
"Serilog": {
"WriteTo": [
{
"Name": "Console",
"Args": {
"outputTemplate": "[{Timestamp:HH:mm:ss} {Level:u3}] {Message:lj} <{SourceContext}>{NewLine}{Exception}"
}
},
{
"Name": "Seq",
"Args": {
"serverUrl": "http://localhost:5341"
}
}
]
},
"AllowedHosts": "*",
"Auth0": {
"Domain": "%AUTH0_DOMAIN%",
"Audience": "%AUTH0_AUDIENCE%",
"ClientId": "%AUTH0_CLIENT_ID%",
"ClientSecret": "%AUTH0_CLIENT_SECRET%"
},
"Jwt": {
"Key": "%JWT_SECRET_KEY%",
"Issuer": "SatOps",
"Audience": "SatOps-GroundStations",
"ExpirationHours": 24
},
"GroundStationHealthCheck": {
"IntervalSeconds": 240
},
"MinIO": {
"Endpoint": "localhost:9000",
"AccessKey": "",
"SecretKey": "",
"Secure": false,
"BucketName": "satops-data"
},
"ImagingCalculation": {
"MaxSearchDurationHours": 48,
"MaxOffNadirDegrees": 40.0
}
}