Skip to content

Instantly share code, notes, and snippets.

@alnutile
Created October 8, 2014 17:24
Show Gist options
  • Save alnutile/6df5e7bc620480af172c to your computer and use it in GitHub Desktop.
Save alnutile/6df5e7bc620480af172c to your computer and use it in GitHub Desktop.
Setup boot environment file. Should be ignored in git as well.
<?php
return 'local';
<?php
/**
* Found in
* /bootstrap/environment.php
*/
$env = $app->detectEnvironment(function()
{
if(file_exists(__DIR__ . '/../.env_boot.php'))
{
return require_once( __DIR__ . '/../.env_boot.php');
}
return 'production';
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment