-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
app.json
32 lines (31 loc) · 1.05 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
{
"name": "Zaqar",
"description": "Email microservice writen in Node.js",
"repository": "https://github.com/khaosdoctor/zaqar",
"logo": "",
"keywords": ["node", "email", "microservice", "zaqar", "mail"],
"env": {
"DEFAULT_FROM_ADDRESS": {
"description": "The email to be the \"from\" address in case there's no from address in the email.",
"value": "some@email.com",
"required": true
},
"RENDERER_LIST": {
"description": "A space-separated list of renderer packages to be loaded on load",
"value": "zaqar-renderer-ejs zaqar-renderer-mustache",
"required": true
},
"SENDGRID_APIKEY": {
"description": "As of now, Zaqar only accepts Sendgrid as mail sender, so this is where you put your API key",
"required": true
},
"AUTH_USERNAME": {
"description": "Username for authentication, if empty, no auth will be used",
"required": false
},
"AUTH_PASS": {
"description": "Password for authentication, if empty, no auth will be used",
"required": false
}
}
}