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.
72 lines
1.5 KiB
72 lines
1.5 KiB
<?php
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
|
|
use App\Models\Product;
|
|
|
|
class InstallShop extends BaseCommand
|
|
{
|
|
/**
|
|
* The name and signature of the console command.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $signature = 'moon:install';
|
|
|
|
/**
|
|
* The console command description.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $description = '初始化商城项目';
|
|
|
|
/**
|
|
* Create a new command instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
/**
|
|
* 安装商城
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function handle()
|
|
{
|
|
$this->call('key:generate');
|
|
// 删除上一次保留的数据表
|
|
$this->call('migrate:reset');
|
|
// 删除上一次保留的文件
|
|
$this->call('moon:delete');
|
|
|
|
|
|
Product::$addToSearch = false;
|
|
|
|
/****************************************
|
|
* 1. 迁移数据表
|
|
* 2. 数据库迁移
|
|
* 3. 复制静态资源
|
|
* 4. 创建软链接
|
|
*/
|
|
$this->call('migrate');
|
|
$this->call('db:seed');
|
|
$this->call('moon:copy');
|
|
$this->call('storage:link');
|
|
|
|
// 更新首页数据,防止上一次遗留
|
|
$this->call('moon:update-home');
|
|
|
|
// 生成全文索引
|
|
$this->call('add:shop-to-search');
|
|
|
|
// 直接开启监听队列
|
|
// $this->info('queue starting please don`t close cmd windows!!!');
|
|
// $this->call('queue:work', ['--tries' => '3']);
|
|
}
|
|
}
|