- Change User and Group from 'skyview' to 'skyview-adsb' in service files - Update ReadWritePaths in database update service accordingly - Add external data source configuration to example config 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
74 lines
No EOL
1.4 KiB
JSON
74 lines
No EOL
1.4 KiB
JSON
{
|
|
"server": {
|
|
"host": "",
|
|
"port": 8080
|
|
},
|
|
"sources": [
|
|
{
|
|
"id": "primary",
|
|
"name": "Primary Site",
|
|
"host": "localhost",
|
|
"port": 30005,
|
|
"latitude": 51.4700,
|
|
"longitude": -0.4600,
|
|
"altitude": 50.0,
|
|
"enabled": true
|
|
},
|
|
{
|
|
"id": "secondary",
|
|
"name": "Secondary Site",
|
|
"host": "192.168.1.100",
|
|
"port": 30005,
|
|
"latitude": 51.4800,
|
|
"longitude": -0.4500,
|
|
"altitude": 45.0,
|
|
"enabled": true
|
|
},
|
|
{
|
|
"id": "remote",
|
|
"name": "Remote Site",
|
|
"host": "remote.example.com",
|
|
"port": 30005,
|
|
"latitude": 51.4900,
|
|
"longitude": -0.4400,
|
|
"altitude": 60.0,
|
|
"enabled": false
|
|
}
|
|
],
|
|
"origin": {
|
|
"latitude": 51.4700,
|
|
"longitude": -0.4600,
|
|
"name": "Control Tower"
|
|
},
|
|
"settings": {
|
|
"history_limit": 1000,
|
|
"stale_timeout": 60,
|
|
"update_rate": 1
|
|
},
|
|
"database": {
|
|
"path": "",
|
|
"max_history_days": 7,
|
|
"backup_on_upgrade": true,
|
|
"max_open_conns": 10,
|
|
"max_idle_conns": 5
|
|
},
|
|
"callsign": {
|
|
"enabled": true,
|
|
"cache_hours": 24,
|
|
"privacy_mode": false,
|
|
"sources": {
|
|
"openflights_airlines": {
|
|
"enabled": true,
|
|
"priority": 1
|
|
},
|
|
"openflights_airports": {
|
|
"enabled": true,
|
|
"priority": 2
|
|
},
|
|
"ourairports": {
|
|
"enabled": true,
|
|
"priority": 3
|
|
}
|
|
}
|
|
}
|
|
} |