forked from jerryseigle/nexmo-developer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
29 lines (29 loc) · 687 Bytes
/
app.json
File metadata and controls
29 lines (29 loc) · 687 Bytes
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
{
"scripts": {
"postdeploy": "rake search_terms:algolia:refresh"
},
"environments": {
"test": {
"addons":[
"heroku-postgresql"
],
"scripts": {
"test-setup": "rails s -d",
"test": "rake test:all"
}
}
},
"buildpacks": [
{ "url": "heroku/nodejs" },
{ "url": "heroku/ruby" }
],
"env": {
"ALGOLIA_API_KEY": { "required": true },
"ALGOLIA_APPLICATION_ID": { "required": true },
"ALGOLIA_CONFIG": { "required": true },
"ALGOLIA_PUBLISHABLE_KEY": { "required": true },
"BUGSNAG_API_KEY": { "required": true },
"RACK_ENV": { "required": true },
"RAILS_ENV": { "required": true }
}
}