-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
33 lines (33 loc) · 1.03 KB
/
app.json
File metadata and controls
33 lines (33 loc) · 1.03 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
{
"name": "pollevbot",
"description": "An ai agent for polls on PollEverywhere",
"repository": "https://github.com/xikronz/pollmi",
"env": {
"USERNAME": {
"description": "PollEv account username"
},
"PASSWORD": {
"description": "PollEv account password"
},
"POLLHOST": {
"description": "PollEv host name"
},
"DAY_OF_WEEK": {
"description": "Cron string specifying weekdays to run pollevbot"
},
"HOUR": {
"description": "Cron string specifying which hours to run pollevbot"
},
"MINUTE": {
"description": "Cron string specifying what minutes to run pollevbot"
},
"LOGIN_TYPE": {
"description": "Login protocol to use (either uw or pollev)",
"value": "uw"
},
"LIFETIME": {
"description": "Time to run pollevbot before terminating (in seconds). Set to inf to run forever.",
"value": "3600"
}
}
}