-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
35 lines (35 loc) · 865 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": "SPA with Heroku",
"description": "A reference app for how to build and deploy a frontend alongside a backend app in Heroku",
"keywords": ["deployment", "frontend", "backend", "spa"],
"website": "https://www.karlsutt.com/articles/how-to-build-and-serve-spa-with-heroku-app/",
"repository": "https://github.com/karls/spa-with-heroku",
"env": {
"NODE_ENV": {
"description": "Node.js environment",
"value": "production"
},
"YARN_PRODUCTION": {
"description": "Should Yarn prune devDependencies?",
"value": "false"
},
"FLASK_ENV": {
"description": "Flask environment",
"value": "production"
}
},
"formation": {
"web": {
"size": "Eco",
"quantity": 1
}
},
"buildpacks": [
{
"url": "heroku/nodejs"
},
{
"url": "heroku/python"
}
]
}