v1.10 info updates

This commit is contained in:
Manish Verma
2018-08-17 07:20:08 +05:30
parent ab77792226
commit 515e279d4e
5 changed files with 23 additions and 8 deletions

View File

@@ -561,7 +561,7 @@ class InstallController extends Controller
$env = base_path().DIRECTORY_SEPARATOR.'.env';
if (is_file($env)) {
$txt = 'DB_INSTALL=1';
$txt1 = 'APP_ENV=development';
$txt1 = 'APP_ENV=production';
file_put_contents($env, $txt.PHP_EOL, FILE_APPEND | LOCK_EX);
file_put_contents($env, $txt1, FILE_APPEND | LOCK_EX);
} else {