-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig-example.yml
37 lines (33 loc) · 1.17 KB
/
config-example.yml
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
#
# Example configuration file for the garmin run tracker app
#
# set default log level, command line options will override it
log_level: info
# locations to check for FIT files, e.g. the mount point of your device
import_paths:
- /media/mstadelman/GARMIN/GARMIN/ACTIVITY
# locations to save download EPO data to (usually this will be
# /[mount-point]/GARMIN/GARMIN/REMOTESW/EPO.BIN)
epo_data_paths:
- /media/mstadelman/GARMIN/GARMIN/REMOTESW/EPO.BIN
# configuration parameters for individual services used by the app to
# fetch data, create images etc. The handler key specifies the implementation
# to use. The configuration map is passed onto the constructor function
# for the given implementation.
services:
elevation:
handler: opentopodata # name of module to use
configuration: # these parameters will be available to the constructor
base_url: http://localhost:5000
dataset: ned10m
batch_size: 100
route_visualization:
handler: openmaptiles
configuration:
base_url: http://localhost:8080
style: osm-bright
image_width: 1800
image_height: 1200
image_format: png
stroke_color: red
stroke_width: 3