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(); ->withoutOverlapping();
// Push company module to Lark // Push company module to Lark
$schedule->command('lark:push-company-module') // $schedule->command('lark:push-company-module')
->hourly() // ->hourly()
->withoutOverlapping(); // ->withoutOverlapping();
// Push booking module to Lark // Push booking module to Lark
$schedule->command('lark:push-booking-module') // $schedule->command('lark:push-booking-module')
->hourly() // ->hourly()
->withoutOverlapping(); // ->withoutOverlapping();
// // Push booking module to Lark // // Push booking module to Lark
// $schedule->command('lark:push-booking-transactions-module') // $schedule->command('lark:push-booking-transactions-module')
// ->everyTenMinutes(); // ->everyTenMinutes();
// $schedule->command('lark:push-booking-2025-transactions-module') // $schedule->command('lark:push-booking-2025-transactions-module')
// ->everyTenMinutes(); // ->everyTenMinutes();
// $schedule->command('lark:push-booking-september-2025-transactions-module') $schedule->command('lark:push-booking-september-2025-transactions-module')
// ->everyTenMinutes(); ->everyTenMinutes();
} }
} }
// Commands Version 1: Before Laravel Vapor/AWS // Commands Version 1: Before Laravel Vapor/AWS