toggl:
# apikey(required) apikey: 1234567890abcdef1234567890abcdef # user_agent(required): Application name or your email address. user_agent: chieping@example.com # workspace_id(required): Your workspace id. You can find it by accessing # https://toggl.com/app/workspaces and choosing your workspace, then it's # in your location bar. workspace_id: 1234567
redmine:
# url(required) url: https://example.com/ # insecure: If true, add --insecure (-k) option to curl command. insecure: false # authentication(required) authentication: # method: api_key is only available method. method: api_key # apikey(required) apikey: 1234567890abcdef1234567890abcdef12345678
# default_issue_id: This is used when Toggl entry's description doesn't contain # any number. If it contain number, the number is used for issue id. default_issue_id: 8888 # tag_mapping: Map data between Toggl tag value and Redmine activity id. tag_mapping:
development: name: 開発作業 id: 11 deployment: name: 配備作業 id: 12 review: name: レビュー id: 13 chore: name: 雑作業 id: 14
# default_activity_id: This id is used when “tag_mapping” can not resolve any # tag value to activity id. default_activity_id: 14 # header: This string are printed on the top of the output. Useful if you open # the output by vim directly and want to use # [vim-quickrun](github.com/thinca/vim-quickrun) since Vim can guess # filetype and vim-quickrun do properly. header: '#!/usr/bin/env bash'