-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
30 lines (30 loc) · 984 Bytes
/
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
{
"name": "Dexscreener to Notion",
"description": "🦉 Import current price of a chart in a notion database",
"repository": "https://github.com/Craaftx/dexscreener-to-notion",
"env": {
"NOTION_SECRET": {
"description": "A secret key for access to Notion API.",
"required": "true"
},
"NOTION_DATABASES": {
"description": "A strigified array of all the IDs of your Notion databases.",
"required": "true"
},
"NOTION_VALUE_KEY": {
"description": "The key of the value column.",
"value": "dex_value",
"required": "true"
},
"NOTION_URL_KEY": {
"description": "The key of the dexscreener link column of type URL.",
"value": "dex_url",
"required": "true"
},
"CRON_DELAY": {
"description": "The delay in minutes between each digit update (by default 30). If the value is equal to 0, the app will be executed once",
"value": "0"
}
},
"addons": ["scheduler:standard"]
}