added a help system, replaced the words "tenant" and "Pwa" with better alternatives. corrected and implemented cron jobs. prepared going live on a coolify-powered system.
This commit is contained in:
@@ -22,9 +22,16 @@ return Application::configure(basePath: dirname(__DIR__))
|
||||
->withCommands([
|
||||
\App\Console\Commands\CheckEventPackages::class,
|
||||
\App\Console\Commands\ExportCouponRedemptions::class,
|
||||
\App\Console\Commands\DeactivateExpiredPhotoboothAccounts::class,
|
||||
\App\Console\Commands\PhotoboothIngestCommand::class,
|
||||
\App\Console\Commands\MonitorStorageCommand::class,
|
||||
\App\Console\Commands\DispatchStorageArchiveCommand::class,
|
||||
\App\Console\Commands\CheckUploadQueuesCommand::class,
|
||||
])
|
||||
->withSchedule(function (\Illuminate\Console\Scheduling\Schedule $schedule) {
|
||||
$schedule->command('package:check-status')->dailyAt('06:00');
|
||||
$schedule->command('photobooth:cleanup-expired')->hourly()->withoutOverlapping();
|
||||
$schedule->command('photobooth:ingest')->everyFiveMinutes()->withoutOverlapping();
|
||||
})
|
||||
->withMiddleware(function (Middleware $middleware) {
|
||||
$middleware->alias([
|
||||
|
||||
Reference in New Issue
Block a user