From 62e1825d01b3eb452505ea6a6c45a3c127ee6fdd Mon Sep 17 00:00:00 2001 From: James Brooks Date: Sat, 21 Feb 2015 12:59:20 +0000 Subject: [PATCH] Remove compiling of assets on Heroku, remove custom buildpack --- app.json | 3 +-- composer.json | 4 ---- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/app.json b/app.json index 88809570..a403fdc9 100644 --- a/app.json +++ b/app.json @@ -15,8 +15,7 @@ "heroku-postgresql" ], "env": { - "ENV": { "value": "heroku", "description": "Do not modify this value as it's required to work on Heroku." }, - "BUILDPACK_URL": { "value": "https://github.com/cachethq/cachet-buildpack", "description": "Do not modify this value as it's required to work on Heroku." } + "ENV": { "value": "heroku", "description": "Do not modify this value as it's required to work on Heroku." } }, "scripts": { "postdeploy": "php artisan migrate --env=heroku; php artisan key:generate;" diff --git a/composer.json b/composer.json index 216cdba3..8fa67b8d 100644 --- a/composer.json +++ b/composer.json @@ -56,10 +56,6 @@ "index-document": "index.php", "log-files": [ "app/storage/logs/laravel.log" - ], - "compile": [ - "bower install", - "gulp" ] } },