-
Notifications
You must be signed in to change notification settings - Fork 143
Config
Tom Goetz edited this page Sep 14, 2020
·
2 revisions
Here's an example of the GarminDB config file with annotations:
{
"credentials": {
"user" : "[email protected]",
"password" : "yourpassword"
},
"data": {
"weight_start_date" : "01/01/2019", - The date to start downloading weight data from.
"sleep_start_date" : "01/01/2019", - The date to start downloading sleep data from.
"rhr_start_date" : "01/01/2019", - The date to start downloading resting heart rate data from.
"monitoring_start_date" : "01/01/2019", - The date to start downloading daily monitoring data from.
"download_latest_activities" : 25, - The number of activities summaries to ask Garmin Connect for when looking for the latest activities. Activities that have no been previously downloaded will be downloaded.
"download_all_activities" : 1000 - The number of activities to summaries to ask for when looking for all activities to download. Activities that have no been previously downloaded will be downloaded.
},
"copy": {
"mount_dir" : "/Volumes/GARMIN"
},
"enabled_stats": {
"monitoring" : true,
"steps" : true,
"itime" : true,
"sleep" : true,
"rhr" : true,
"weight" : true,
"activities" : true
},
"course_views": {
"steps" : []
},
"modes": {
"ignore_dev_fields" : false - If enabled developer fields will be ignored.
}
}
- Set the start dates based on the earliest dates you have that type of data for.
- Disable stat types that you have no data for.