# Copyright (C) Robin Krahl # SPDX-License-Identifier: CC0-1.0 # This file contains an example configuration for trackme. # # The configuration has to be placed in one of the following locations: # - ${XDG_CONFIG_HOME}/trackme/config.toml # - ${dir}/trackme/config.toml for dir in XDG_CONFIG_DIRS # The default values are ~/.config for XDG_CONFIG_HOME and /etc/xdg for # XDG_CONFIG_DIRS. Refer to the XDG Base Directory specification for more information: # https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html # # Alternatively, the path to the config file can be set using the --config # option. All settings can also be passed as command-line arguments. Use the # --help option to list the available arguments. # Settings for https://intervals.icu/ # # All settings are required to use the platform. The values for the athlete ID # and the API key can be found in Settings → Developer Settings. [platform.intervals_icu] athlete_id = "i12345" api_key = "secret-string" # Settings for https://strava.com/ # # All settings are required to use the platform. To obtain the client ID and # secret, create an API application in Settings → My API Application. See the # Strava Developers documentation for more information: # https://developers.strava.com/docs/getting-started/#account [platform.strava] client_id = 12345 client_secret = "secret-string"