-
Notifications
You must be signed in to change notification settings - Fork 317
/
app.json
38 lines (38 loc) · 1.09 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
{
"name": "DreamFactory API Management Platform",
"description": "DreamFactory is a popular iPaaS solution used by thousands of companies around the globe.",
"repository": "https://github.com/dreamfactorysoftware/dreamfactory",
"logo": "https://github.com/dreamfactorysoftware/dreamfactory/raw/master/readme/vertical-logo-fullcolor.png",
"keywords": [
"ipaas",
"api",
"api-gateway",
"api-management",
"dreamfactory"
],
"addons": ["heroku-postgresql:hobby-dev"],
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-cli"
},
{
"url": "https://github.com/heroku/heroku-buildpack-php"
}
],
"env": {
"APP_NAME": {
"description": "This must exactly match the App name you specified above",
"required": "true"
},
"APP_ENV": "local",
"DB_CONNECTION": "pgsql",
"LOG_CHANNEL": "heroku",
"HEROKU_API_KEY": {
"description": "Please enter your Heroku API Key: https://dashboard.heroku.com/account",
"required": "true"
}
},
"scripts": {
"postdeploy": "./bin/heroku.sh"
}
}