You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
923 B

7 years ago
<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
use Artisan;
7 years ago
class AppServiceProvider extends ServiceProvider
{
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
7 years ago
if(!file_exists(database_path(env('DB_DATABASE')))) {
// first time setup
touch(database_path(env('DB_DATABASE')));
7 years ago
Artisan::call('migrate', array('--path' => 'database/migrations', '--force' => true, '--seed' => true));
Artisan::call('storage:link');
//Cache
//Artisan::call('config:cache');
//Artisan::call('route:cache');
7 years ago
}
7 years ago
}
/**
* Register any application services.
*
* @return void
*/
public function register()
{
7 years ago
$this->app->singleton('settings', function () {
return new Setting();
});
7 years ago
}
}