Skip to content

Commit

Permalink
Added app settings for Raspberry Pi
Browse files Browse the repository at this point in the history
  • Loading branch information
davewalker5 committed Sep 11, 2023
1 parent 6cb00a6 commit 73bae83
Showing 1 changed file with 74 additions and 0 deletions.
74 changes: 74 additions & 0 deletions src/BaseStationReader.UI/appsettings.pi.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
{
"ApplicationSettings": {
"Host": "127.0.0.1",
"Port": 30003,
"SocketReadTimeout": 60000,
"ApplicationTimeout": 600000,
"TimeToRecent": 60000,
"TimeToStale": 120000,
"TimeToRemoval": 180000,
"TimeToLock": 900000,
"LogFile": "",
"MinimumLogLevel": "Info",
"EnableSqlWriter": false,
"WriterInterval": 30000,
"WriterBatchSize": 20000,
"RefreshInterval": 1000,
"MaximumRows": 0,
"Columns": [
{
"Property": "Address",
"Label": "ID",
"Format": ""
},
{
"Property": "Callsign",
"Label": "Callsign",
"Format": ""
},
{
"Property": "Squawk",
"Label": "Squawk",
"Format": ""
},
{
"Property": "Altitude",
"Label": "Altitude",
"Format": "N0"
},
{
"Property": "GroundSpeed",
"Label": "Speed",
"Format": "N0"
},
{
"Property": "Track",
"Label": "Heading",
"Format": "N0"
},
{
"Property": "Latitude",
"Label": "Latitude",
"Format": "N5"
},
{
"Property": "Longitude",
"Label": "Longitude",
"Format": "N5"
},
{
"Property": "VerticalRate",
"Label": "Vertical Rate",
"Format": "N0"
},
{
"Property": "LastSeen",
"Label": "Last Seen",
"Format": "HH:mm:ss.fff"
}
]
},
"ConnectionStrings": {
"BaseStationReaderDB": "Data Source=/home/pi/MyApps/aircrafttracker.db"
}
}

0 comments on commit 73bae83

Please sign in to comment.