Skip to content

Commit

Permalink
Merge pull request #277 from roots/default-env-production
Browse files Browse the repository at this point in the history
Production environment by default
  • Loading branch information
swalkinshaw authored Nov 13, 2016
2 parents 1221c89 + f11f83a commit 1b1ed49
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config/application.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@

/**
* Set up our global environment constant and load its config first
* Default: development
* Default: production
*/
define('WP_ENV', env('WP_ENV') ?: 'development');
define('WP_ENV', env('WP_ENV') ?: 'production');

$env_config = __DIR__ . '/environments/' . WP_ENV . '.php';

Expand Down

0 comments on commit 1b1ed49

Please sign in to comment.