forked from syncforynab/fintech-to-ynab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
40 lines (40 loc) · 1.47 KB
/
app.json
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
38
39
40
{
"name": "Fintech to YNAB",
"description": "Automatically push Monzo and Starling transactions into YNAB",
"repository": "https://github.com/scottrobertson/fintech-to-ynab",
"keywords": ["monzo", "ynab", "starling"],
"env": {
"YNAB_ACCESS_TOKEN": {
"description": "Your YNAB access token",
"required": true
},
"YNAB_BUDGET_ID": {
"description": "Optional: Default budget ID. If not provided, we will use the first budget.",
"required": false
},
"YNAB_MONZO_ACCOUNT_ID": {
"description": "Optional: Monzo account ID. If not provided, we will use the first YNAB account.",
"required": false
},
"YNAB_STARLING_ACCOUNT_ID": {
"description": "Optional: Starling account ID. If not provided, we will use the first YNAB account.",
"required": false
},
"SKIP_EMOJI": {
"description": "Optional: This will tell Fintech to YNAB not to add the emoji to the descriptions. (Monzo Only)",
"required": false
},
"SKIP_FOREIGN_CURRENCY_FLAG": {
"description": "Optional: This will tell Fintech to YNAB not to add flags to foreign currency transactions.",
"required": false
},
"SKIP_TAGS": {
"description": "Optional: This will tell Fintech to YNAB not to add hashtags to the transaction description. (Monzo Only)",
"required": false
},
"URL_SECRET": {
"description": "Optional: This is a secret used for the webhooks endpoint.",
"required": false
}
}
}