-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathapp.json
37 lines (37 loc) · 1.31 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
{
"name": "mastodon-welcome-bot",
"description": "a mastodon bot that sends out welcome toots to new users",
"repository": "https://github.com/indyhall/mastodon-welcome-bot",
"keywords": ["mastodon", "social media", "welcome", "bot"],
"addons": [
{ "plan": "scheduler:standard" }
],
"env": {
"ACCESS_TOKEN": {
"description": "the access token for the Mastodon account that you want the toots to be sent from",
"required": true
},
"DAYS_SINCE": {
"description": "how many days back of new users you want to send toots to",
"required": false,
"value": "1"
},
"INSTANCE_BASE_URL": {
"description": "the base url of the Mastodon instance you want to run this for",
"required": true
},
"TOOT_TEMPLATE": {
"description": "the template of the toot that you want to send out",
"required": true
},
"DEBUG": {
"description": "boolean for debug mode. toots aren't actually sent when this is true",
"required": false,
"value": "true"
},
"ACCOUNT_ID": {
"description": "the account ID that you want to pull followers from",
"required": true
}
}
}