KodeStar
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
7 additions and
3 deletions
-
app/Providers/AppServiceProvider.php
|
|
@ -18,16 +18,20 @@ class AppServiceProvider extends ServiceProvider |
|
|
|
{ |
|
|
|
$alt_bg = ''; |
|
|
|
|
|
|
|
if(!is_file(database_path(env('DB_DATABASE')))) { |
|
|
|
if(!is_file(base_path('.env'))) { |
|
|
|
touch(base_path('.env')); |
|
|
|
Artisan::call('key:generate'); |
|
|
|
} |
|
|
|
if(!is_file(database_path('app.sqlite'))) { |
|
|
|
// first time setup |
|
|
|
touch(database_path(env('DB_DATABASE'))); |
|
|
|
touch(database_path('app.sqlite')); |
|
|
|
Artisan::call('migrate', array('--path' => 'database/migrations', '--force' => true, '--seed' => true)); |
|
|
|
Artisan::call('storage:link'); |
|
|
|
//Cache |
|
|
|
//Artisan::call('config:cache'); |
|
|
|
//Artisan::call('route:cache'); |
|
|
|
} |
|
|
|
if(is_file(database_path(env('DB_DATABASE')))) { |
|
|
|
if(is_file(database_path('app.sqlite'))) { |
|
|
|
if(Schema::hasTable('settings')) { |
|
|
|
if($bg_image = Setting::fetch('background_image')) { |
|
|
|
$alt_bg = ' style="background-image: url('.asset('storage/'.$bg_image).')"'; |
|
|
|