-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathconfig.yml.example
More file actions
36 lines (29 loc) · 1.1 KB
/
config.yml.example
File metadata and controls
36 lines (29 loc) · 1.1 KB
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
common:
# See the complete list at http://stackoverflow.com/q/13866926/402145
local_timezone: 'US/Pacific'
trello:
board_name_patterns:
# String or regex of the product backlog board's name
product_backlog: "Product Backlog"
# Regex of your sprint backlog boards' names. The first
# match group in the regex must be the sprint number
sprint_backlog: "Sprint (\\d+).*"
# Get your api_key from https://trello.com/1/appKey/generate
api_key: <YOUR API KEY HERE>
# To get a token:
# 1. Log in to Trello on your browser
# 2. Copy the value of api_key above and use it to
# replace APIKEY in https://trello.com/1/authorize?key=APIKEY&name=Rosetta&expiration=never&response_type=token
# 3. Paste the resulting URL in your browser
# 4. Click 'Allow'
# 5. Copy the generated token and paste it below:
api_token: <YOUR API TOKEN HERE>
# Helps trello.py determine if a card is done. Only the
# 'done' section is relevant for now. Put the names of
# your 'done' lists there.
list_name_types:
wip:
- 'Doing'
- 'Impeded'
done:
- 'Done'