-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathapp.json
More file actions
53 lines (53 loc) · 1.5 KB
/
Copy pathapp.json
File metadata and controls
53 lines (53 loc) · 1.5 KB
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
44
45
46
47
48
49
50
51
52
53
{
"name": "Easy!Appointments",
"description": "Allow customers to book appointments with you via a highly customizable and sophisticated web application",
"repository": "https://github.com/daneov/easyappointments",
"logo": "https://raw.githubusercontent.com/alextselegidis/easyappointments/develop/logo.png",
"keywords": ["node", "php", "calendar"],
"addons": [
{
"plan": "jawsdb:kitefin",
"as": "MySQL"
},
{
"plan": "papertrail:choklad"
}
],
"env": {
"BASE_URL": {
"description": "The domain the site is accessible on",
"required": true,
"value": "https://<app-name>.herokuapp.com"
},
"MAIL_SMTP_SERVER": {
"description": "SMTP server used to send emails",
"required": true,
"value": "smtp.gmail.com"
},
"MAIL_SMTP_LOGIN": {
"description": "Username for the SMTP server",
"required": true,
"value": "@gmail.com"
},
"MAIL_SMTP_PASSWORD": {
"description": "App or account password for the SMTP server",
"required": true,
"value": ""
},
"MAIL_SMTP_PORT": {
"description": "Port to use for the SMTP connection. Must match SMTP_ENCRYPTION",
"required": false,
"value": "587"
},
"MAIL_SMTP_ENCRYPTION": {
"description": "Encrypt the SMTP connection using either 'tls' or 'ssl'",
"required": false,
"value": "tls"
}
},
"buildpacks": [{
"url": "heroku/php"
},{
"url": "heroku/nodejs"
}]
}