From 75be3a83f902694a7659de4759815370d4fbe561 Mon Sep 17 00:00:00 2001 From: Severiano Badajoz Date: Tue, 7 Jul 2020 16:27:08 -0700 Subject: [PATCH] fix buildpack syntax (#1608) There was a syntax error in our app.json that was leading to the inability to use the "deploy-to-heroku" button. --- app.json | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/app.json b/app.json index 958f7a28..107f8f27 100644 --- a/app.json +++ b/app.json @@ -11,8 +11,12 @@ "dataviz" ], "buildpacks": [ - "heroku/nodejs", - "heroku/python" + { + "url": "heroku/nodejs" + }, + { + "url": "heroku/python" + } ], "stack": "heroku-18", "env": {