-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathapp.json
37 lines (37 loc) · 1011 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
31
32
33
34
35
36
37
{
"name": "email-sender",
"repository": "https://github.com/umluizlima/email-sender",
"env": {
"ENV": {
"description": "The environment in which to run the application.",
"value": "prod"
},
"API_KEY": {
"description": "A secret key for API authentication.",
"generator": "secret"
},
"DEFAULT_EMAIL_ADDRESS": {
"description": "The default address to be used on from field. It must be set as an authorized sender on the chosen email service",
"value": "[email protected]"
},
"MAILJET_API_KEY": {
"description": "API key retrieved from Mailjet's dashboard.",
"value": "mailjet-api-key"
},
"MAILJET_API_SECRET": {
"description": "API secret retrieved from Mailjet's dashboard.",
"value": "mailjet-api-secret"
}
},
"addons": ["cloudamqp:lemur"],
"formation": {
"web": {
"quantity": 1,
"size": "free"
},
"worker": {
"quantity": 1,
"size": "free"
}
}
}