environment.php 1013 B

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. /*
  3. |--------------------------------------------------------------------------
  4. | Load Environment Variables
  5. |--------------------------------------------------------------------------
  6. |
  7. | Next we will load the environment variables for the application which
  8. | are stored in the ".env" file. These variables will be loaded into
  9. | the $_ENV and "putenv" facilities of PHP so they stay available.
  10. |
  11. */
  12. if (file_exists(__DIR__.'/../.env'))
  13. {
  14. Dotenv::load(__DIR__.'/../');
  15. //Dotenv::required('APP_ENV');
  16. }
  17. /*
  18. |--------------------------------------------------------------------------
  19. | Detect The Application Environment
  20. |--------------------------------------------------------------------------
  21. |
  22. | Laravel takes a dead simple approach to your application environments
  23. | so you can just specify a machine name for the host that matches a
  24. | given environment, then we will automatically detect it for you.
  25. |
  26. */
  27. $env = $app->detectEnvironment(function()
  28. {
  29. return getenv('APP_ENV') ?: 'production';
  30. });