forked from voidlabs/mosaico
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathapp.json
70 lines (70 loc) · 1.68 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "Mosaico Backend",
"description": "Ready to go backend for Mosaico editor",
"repository": "https://github.com/goodenough/mosaico-backend",
"logo": "https://mosaicobackend-prod.herokuapp.com/applogo.svg",
"keywords": [
],
"stack": "cedar-14",
"success_url": "/admin/login",
"env": {
"APP_NAME": {
"description": "copy and paste the name you've given to your application",
"required": true
},
"backend_admin__password": {
"description": "The password to access the admin",
"required": true
},
"backend_storage__aws__accessKeyId": {
"description": "20 characters key",
"required": true
},
"backend_storage__aws__secretAccessKey": {
"description": "40 characters secret key",
"required": true
},
"backend_storage__aws__bucketName": {
"description": "your bucket name",
"required": true
},
"backend_storage__aws__region": {
"description": "region of your bucket (ex: ap-southeast-1)",
"required": true
}
},
"addons": [
{
"plan": "heroku-postgresql:hobby-dev"
},
{
"plan": "sendgrid:starter"
},
{
"plan": "heroku-redis:hobby-dev"
},
{
"plan": "logentries:le_tryit"
},
{
"plan": "librato:development"
}
],
"buildpacks": [
{
"url": "https://github.com/alex88/heroku-buildpack-vips.git"
},
{
"url": "https://github.com/heroku/heroku-buildpack-apt"
},
{
"url": "https://github.com/captain401/heroku-buildpack-xvfb.git"
},
{
"url": "https://github.com/benschwarz/heroku-electron-buildpack.git"
},
{
"url": "heroku/nodejs"
}
]
}