-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
46 lines (46 loc) · 1.1 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
39
40
41
42
43
44
45
46
{
"name": "cloud-stove",
"description": "The Cloud Stove. Finely crafted cloud application deployments.",
"scripts": {
"postdeploy": "bin/setup"
},
"env": {
"RAILS_ENV": "production",
"DIGITALOCEAN_TOKEN": {
"required": true
},
"ANC_ACCESS_KEY_ID": {
"required": true
},
"ANC_PRIVATE_KEY": {
"required": true
},
"AZURE_SUBSCRIPTION_ID": {
"required": false
},
"AZURE_TENANT_ID": {
"required": false
},
"AZURE_CLIENT_ID": {
"required": false
},
"AZURE_CLIENT_SECRET": {
"required": false
},
"SECRET_KEY_BASE": {
"generator": "secret"
},
"DEPLOY_TASKS": "db:migrate"
},
"success_url": "/",
"addons": [ "heroku-postgresql:hobby-dev" ],
"formation": [
{ "process": "web", "quantity": 1},
{ "process": "worker", "quantity": 1}
],
"buildpacks": [
{ "url": "https://github.com/peterkeen/heroku-buildpack-vendorbinaries" },
{ "url": "https://github.com/heroku/heroku-buildpack-ruby" },
{ "url": "https://github.com/gunpowderlabs/buildpack-ruby-rake-deploy-tasks" }
]
}