-
Notifications
You must be signed in to change notification settings - Fork 35
/
app.json
36 lines (36 loc) · 1.08 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
32
33
34
35
36
{
"name": "PactMaker",
"description": "Starter workflow for creating self-signed PDF agreements with node.js and express",
"scripts": {
},
"env": {
"TITLE": {
"description": "Name of your company or app. This will appear in the header and footer.",
"value": "PactMaker"
},
"POSTMARK_SERVER_TOKEN": {
"description": "Server tokens can be found under the credentials tab on your Postmark server.",
"value": ""
},
"POSTMARK_FROM_ADDRESS": {
"description": "The email address you want to send the email from. You must verify your domain or create a valid Sender Signature on Postmark.",
"value": ""
},
"INTERNAL_EMAIL_RECIPIENTS": {
"description": "Comma-separated list of email address you want to send the PDF agreement to.",
"value": ""
},
"INTERNAL_EMAIL_SUBJECT": "<%= company %> just signed the agreement",
"SIGNEE_EMAIL_SUBJECT": "Your signed agreement for <%= company %>"
},
"formation": {
"web": {
"quantity": 1
}
},
"buildpacks": [
{
"url": "heroku/nodejs"
}
]
}