Convert .env file to env.php to mask critical info

This commit is contained in:
Nabeel Shahzad
2017-12-17 01:10:49 -06:00
parent 817d3262d4
commit 9105c45ad0
8 changed files with 95 additions and 8 deletions

View File

@@ -18,7 +18,7 @@ class Application extends LaravelApplication
{
parent::__construct(dirname(__DIR__) . '/');
$this->loadEnvironmentFrom('.env');
$this->loadEnvironmentFrom('env.php');
$this->useDatabasePath($this->basePath . '/app/Database');
$this->useStoragePath($this->basePath . '/storage');
}