Skip to content

Commit

Permalink
Merge pull request #17 from spryker/bugfix/ps-2618-use-staging-live-e…
Browse files Browse the repository at this point in the history
…nv-configuration-by-default

PS-2618 Use staging/live env configuration by default (production)
  • Loading branch information
dereuromark authored Feb 18, 2019
2 parents dded70d + a2625d5 commit 44f57df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Spryker/Console/InstallConsoleCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ protected function getFactory(): InstallFactory
*/
protected function getEnvironment()
{
$environment = (getenv('APPLICATION_ENV') ? getenv('APPLICATION_ENV') : 'development');
$environment = (getenv('APPLICATION_ENV') ? getenv('APPLICATION_ENV') : 'production');

return (string)$environment;
}
Expand Down

0 comments on commit 44f57df

Please sign in to comment.