2025-04-25 09:33:28 +08:00
|
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
use Illuminate\Foundation\Inspiring;
|
|
|
|
|
use Illuminate\Support\Facades\Artisan;
|
2025-05-26 16:28:16 +08:00
|
|
|
|
use Illuminate\Support\Facades\Schedule;
|
2025-04-25 09:33:28 +08:00
|
|
|
|
|
|
|
|
|
Artisan::command('inspire', function () {
|
|
|
|
|
$this->comment(Inspiring::quote());
|
|
|
|
|
})->purpose('Display an inspiring quote');
|
2025-05-26 16:28:16 +08:00
|
|
|
|
|
|
|
|
|
|
2025-06-03 17:45:10 +08:00
|
|
|
|
Schedule::command('app:clear-machine-statuses')->dailyAt('12:00'); // 每天凌晨 12:10 執行
|
2025-05-26 16:28:16 +08:00
|
|
|
|
//首次部署或有新增命令時)建立或更新任務排程 Crontab
|
|
|
|
|
// 檢查是否已有下列 crontab 設定(crontab -e):
|
|
|
|
|
//分鐘 小時 日 月 星期 指令
|
|
|
|
|
// * * * * * cd /Users/allen.yan/work/KTV && php artisan schedule:run >> /dev/null 2>&1
|