-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapp.json
More file actions
48 lines (48 loc) · 1.29 KB
/
app.json
File metadata and controls
48 lines (48 loc) · 1.29 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
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "launchchimp",
"description": "A Launchrock Mailchimp API Integration Daemon",
"keywords": [
"Launchrock",
"Mailchimp",
"API"
],
"website": "https://github.com/timols/launchchimp",
"repository": "https://github.com/timols/launchchimp",
"env": {
"LAUNCHCHIMP_LR_EMAIL": {
"description": "Email address to login to Launchrock",
"required": true,
"default": ""
},
"LAUNCHCHIMP_LR_PASSWORD": {
"description": "Password used to login to Launchrock",
"required": true,
"default": ""
},
"LAUNCHCHIMP_LR_PROJECT": {
"description": "Name of the project in Launchrock",
"required": true,
"default": ""
},
"LAUNCHCHIMP_MC_ADMINS": {
"description": "Comma separated list of emails to send a success email to",
"required": false,
"default": ""
},
"LAUNCHCHIMP_MC_API_KEY": {
"description": "Your Mailchimp API key",
"required": true,
"default": ""
},
"LAUNCHCHIMP_MC_LIST": {
"description": "Name of the Mailchimp list to add subscribers to",
"required": true,
"default": ""
},
"LAUNCHCHIMP_POLL_FREQUENCY": {
"description": "How frequently to poll for new users",
"required": false,
"default": "60000"
}
}
}