-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.json
47 lines (47 loc) · 1.17 KB
/
settings.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
{
"latitude": 38.8969137,
"longitude": -77.0357096,
"adsb": {
"uri": "my.adsb.server.lan",
"port": 30002,
"type": "raw"
},
"mongoDb": {
"enabled": true,
"uri": "localhost",
"port": 27017,
"database": "SkyFollower",
"collection": "flights"
},
"registration": {
"enabled": false,
"uri": "http://localhost:8480/registration/icao_hex/$ICAO_HEX$",
"x-api-key": "some_secret_key"
},
"operators": {
"enabled": false,
"uri": "http://localhost:8480/operator/$IDENT$",
"x-api-key": "some_secret_key"
},
"flights": {
"enabled": false,
"uri": "http://localhost:8480/flight/$IDENT$",
"x-api-key": "some_secret_key"
},
"mqtt": {
"enabled": false,
"uri": "my.mqtt.server.lan",
"port": 1883,
"username": "my_username",
"password": "my_clear_text_password",
"topic": "SkyFollower/"
},
"files": {
"areas": "./areas.geojson",
"rules": "./rules.json"
},
"home_assistant":{
"enabled" : false,
"discovery_prefix" : "homeassistant"
},
}