-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.json
34 lines (34 loc) · 1020 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
{
"name": "epages-beyond-app",
"description": "ePages Beyond example app to create beautiful order documents.",
"website": "https://epages-beyond-app.herokuapp.com/",
"repository": "https://github.com/ooz/epages-beyond-app",
"image": "heroku/python",
"buildpacks": [
{ "url": "https://github.com/dscout/wkhtmltopdf-buildpack" },
{ "url": "heroku/python" }
],
"addons": [
{
"plan": "heroku-postgresql:hobby-dev",
"options": {
"version": "10"
}
}
],
"env": {
"API_URL": {
"value": "",
"description": "API URL to your ePages Beyond shop. If set, this becomes a custom app (developer app).",
"required": false
},
"CLIENT_ID": {
"value": "",
"description": "Client ID of your app"
},
"CLIENT_SECRET": {
"value": "",
"description": "Client secret of your app"
}
}
}