forked from Kikobeats/tom-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
29 lines (29 loc) · 905 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
{
"name": "tom",
"description": "A tom microservice example",
"repository": "https://github.com/kikobeats/tom-example",
"logo": "https://tom.js.org/static/logo-color.png",
"keywords": ["node", "tom", "microservice"],
"env": {
"TOM_STRIPE_KEY": {
"description": "The stripe key of your account, see https://dashboard.stripe.com/account/apikeys",
"required": true
},
"TOM_EMAIL_USER": {
"description": "Your SMTP authentication user credential.",
"required": true
},
"TOM_EMAIL_PASSWORD": {
"description": "Your SMTP authentication password credential.",
"required": true
},
"TOM_ALLOWED_ORIGIN": {
"description": "It configures the Access-Control-Allow-Origin CORS.",
"required": false
},
"TOM_API_KEY": {
"description": "It protects your API using the key provided",
"required": false
}
}
}