if .env is missing copy example and generate key

This commit is contained in:
KodeStar 2019-01-04 10:38:07 +00:00 committed by GitHub
parent c073929895
commit f42ac0c5ba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -21,7 +21,7 @@ class AppServiceProvider extends ServiceProvider
{
if(!is_file(base_path('.env'))) {
touch(base_path('.env'));
copy(base_path('.env.example'), base_path('.env'));
Artisan::call('key:generate');
}
if(!is_file(database_path('app.sqlite'))) {