forked from strapi/strapi-starter-nuxt-blog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
35 lines (35 loc) · 912 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
30
31
32
33
34
35
{
"name": "Strapi",
"description": "Strapi Heroku deployment",
"keywords": ["strapi", "heroku"],
"repository": "https://github.com/strapi/strapi-starter-nuxt-blog",
"env": {
"PROJECT_PATH": {
"description": "Backend project path",
"required": true,
"value": "backend"
},
"CLOUDINARY_CLOUD_NAME": {
"description": "The 'Cloud name' of your Cloudinary account",
"required": true
},
"CLOUDINARY_API_KEY": {
"description": "The 'API Key' of your Cloudinary account",
"required": true
},
"CLOUDINARY_API_SECRET": {
"description": "The 'API Secret' of your Cloudinary account",
"required": true
}
},
"addons": ["heroku-postgresql:hobby-dev"],
"image": "heroku/nodejs",
"buildpacks": [
{
"url": "https://github.com/timanovsky/subdir-heroku-buildpack"
},
{
"url": "heroku/nodejs"
}
]
}