blob: 1835549e7d25fb3fbf041bdff5e3f2c9aaea6a18 (
plain)
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
|
# -*- mode: yaml; -*-
# Settings for galileo.py
# if in deamon mode, delay between sync runs
# specified in milliseconds
daemon-period: 60000
# keep dump files
keep-dumps: false
# upload data to Fitbit
do-upload: true
# whether to use encryption (HTTPS) to send tracker data
https-only: true
# directory to store the dumps
dump-dir: /var/lib/galileo/dump
# logging (default/verbose/debug)
logging: verbose
# synchronize even if trackers were recently synchronized
force-sync: false
# trackers to include (remember to quote the IDs)
#include:
# - '123456789ABC'
# - '9876543210AB'
# - '112233445566'
# trackers to exclude (remember to quote the IDs)
#exclude:
# - 'AABBCCDDEEFF'
# - '881144BB1234'
|