-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
app.json
31 lines (31 loc) · 935 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
{
"name": "saleor-dashboard",
"stack": "heroku-20",
"description": "A GraphQL-powered, single-page dashboard application for Saleor",
"repository": "https://github.com/mirumee/saleor-dashboard",
"website": "http://getsaleor.com/",
"logo": "https://mirumee.com/img/opensource_saleor.jpg",
"keywords": ["saleor", "e-commerce", "dashboard"],
"env": {
"API_URL": {
"description": "URI of a running instance of Saleor GraphQL API",
"value": "https://demo.getsaleor.com/graphql/"
},
"APP_MOUNT_URI": {
"description": "URI at which the Dashboard app will be mounted",
"value": "/"
},
"LOCALE_CODE": {
"description": "Locale code to select default language",
"value": "EN"
}
},
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-nodejs.git"
},
{
"url": "https://github.com/heroku/heroku-buildpack-static.git"
}
]
}