From 4803404808706c93779e80f49245bd3af5ce981d Mon Sep 17 00:00:00 2001 From: Graham Campbell Date: Mon, 29 Dec 2014 20:07:11 +0000 Subject: [PATCH] Fixes --- .env.heroku.php | 15 +++++---------- .gitignore | 4 +--- Procfile | 2 +- 3 files changed, 7 insertions(+), 14 deletions(-) diff --git a/.env.heroku.php b/.env.heroku.php index 6715b791..8b2a91e8 100644 --- a/.env.heroku.php +++ b/.env.heroku.php @@ -1,17 +1,12 @@ $dbURL['host'], +return [ + 'DB_HOST' => $dbURL['host'], 'DB_DATABASE' => $dbName, 'DB_USERNAME' => $dbURL['user'], 'DB_PASSWORD' => $dbURL['pass'], - 'DB_DRIVER' => 'mysql', - -); - - - + 'DB_DRIVER' => 'pgsql', +]; diff --git a/.gitignore b/.gitignore index 46d452a5..44c43bb6 100644 --- a/.gitignore +++ b/.gitignore @@ -7,6 +7,7 @@ .env.*.php .env.php config.codekit +!.env.heroku.php # Assets development /node_modules @@ -18,6 +19,3 @@ public/js/ npm-debug.log .vagrant/ tests/_output/* - -# Heroku -!.env.heroku.php diff --git a/Procfile b/Procfile index 0e26515a..0b03eba0 100644 --- a/Procfile +++ b/Procfile @@ -1 +1 @@ -web: vendor/bin/heroku-php-apache2 public +web: vendor/bin/heroku-php-nginx public