aboutsummaryrefslogtreecommitdiff
path: root/app.json
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2017-04-07 10:52:30 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2017-04-07 10:52:30 +0200
commitc7117a49100775795357e538740b16fa770b3678 (patch)
tree7496ff41d0e0a0807b9ca2a14faa29c271e2393b /app.json
parentSet all the buildpacks. (diff)
downloadnewspipe-c7117a49100775795357e538740b16fa770b3678.tar.gz
newspipe-c7117a49100775795357e538740b16fa770b3678.tar.bz2
newspipe-c7117a49100775795357e538740b16fa770b3678.zip
change order of buildpacks
Diffstat (limited to 'app.json')
-rw-r--r--app.json4
1 files changed, 2 insertions, 2 deletions
diff --git a/app.json b/app.json
index 79c95099..e8a96efb 100644
--- a/app.json
+++ b/app.json
@@ -18,10 +18,10 @@
],
"buildpacks": [
{
- "url": "https://github.com/ejholmes/heroku-buildpack-bower"
+ "url": "https://github.com/heroku/heroku-buildpack-nodejs"
},
{
- "url": "https://github.com/heroku/heroku-buildpack-nodejs"
+ "url": "https://github.com/ejholmes/heroku-buildpack-bower"
},
{
"url": "heroku/python"
bgstack15