vapor/staging only amendment

This commit is contained in:
Dillon Ngo
2026-07-01 11:33:37 +08:00
parent fe2fd6531a
commit 33332a084c
+8 -8
View File
@@ -112,22 +112,22 @@ return Application::configure(basePath: dirname(__DIR__))
->withoutOverlapping();
// Push company module to Lark
$schedule->command('lark:push-company-module')
->hourly()
->withoutOverlapping();
// $schedule->command('lark:push-company-module')
// ->hourly()
// ->withoutOverlapping();
// Push booking module to Lark
$schedule->command('lark:push-booking-module')
->hourly()
->withoutOverlapping();
// $schedule->command('lark:push-booking-module')
// ->hourly()
// ->withoutOverlapping();
// // Push booking module to Lark
// $schedule->command('lark:push-booking-transactions-module')
// ->everyTenMinutes();
// $schedule->command('lark:push-booking-2025-transactions-module')
// ->everyTenMinutes();
// $schedule->command('lark:push-booking-september-2025-transactions-module')
// ->everyTenMinutes();
$schedule->command('lark:push-booking-september-2025-transactions-module')
->everyTenMinutes();
}
}
// Commands Version 1: Before Laravel Vapor/AWS