-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
43 lines (43 loc) · 1.25 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
37
38
39
40
41
42
43
{
"name": "Slingshot",
"description": "Slingshot is a web application that forwards the the body of a POST request to a set of emails.",
"keywords": [
"productivity",
"forms",
"forward",
"email",
"Go"
],
"repository": "https://github.com/hashamali/slingshot",
"env": {
"USE_ENV_VARS": {
"description": "Tells slingshot to use environment variables for configuration.",
"value": true
},
"SMTP_HOST": {
"description": "The SMTP host to connect to.",
"value": "smtp.example.com"
},
"SMTP_PORT": {
"description": "The SMTP port to connect to.",
"value": 587
},
"SMTP_PASSWORD": {
"description": "The password for your account with the SMTP provider.",
"value": "PASSWORD"
},
"EMAIL_FROM": {
"description": "The email to send from.",
"value": "[email protected]"
},
"EMAIL_TO": {
"description": "The emails to send to. Comma separated list.",
"value": "[email protected],[email protected]"
}
},
"buildpacks": [
{
"url": "heroku/go"
}
]
}