diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-01-12 22:25:44 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-01-12 22:25:44 -0500 |
commit | 46fd893bd6728031d5f4118f952bf6cce5017965 (patch) | |
tree | 0687f701cd35980395d653eb538810d6819a6883 /app/common.php | |
parent | 6d61d0e751e30e7cdbe4ed077a347e43272eef8b (diff) |
Add Heroku one-click install button
Diffstat (limited to 'app/common.php')
-rw-r--r-- | app/common.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/app/common.php b/app/common.php index bd336d92..a434a73f 100644 --- a/app/common.php +++ b/app/common.php @@ -2,6 +2,18 @@ require 'vendor/autoload.php'; +// Automatically parse environment configuration (Heroku) +if (getenv('DATABASE_URL')) { + + $dbopts = parse_url(getenv('DATABASE_URL')); + + define('DB_DRIVER', $dbopts['scheme']); + define('DB_USERNAME', $dbopts["user"]); + define('DB_PASSWORD', $dbopts["pass"]); + define('DB_HOSTNAME', $dbopts["host"]); + define('DB_NAME', ltrim($dbopts["path"],'/')); +} + // Include custom config file if (file_exists('config.php')) { require 'config.php'; |