36 lines
1015 B
PHP
36 lines
1015 B
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use App\Jobs\CoolifyTask;
|
|
use Illuminate\Queue\Events\JobProcessed;
|
|
use Illuminate\Support\Facades\Process;
|
|
use Illuminate\Support\Facades\Queue;
|
|
use Illuminate\Support\ServiceProvider;
|
|
use Illuminate\Support\Str;
|
|
|
|
class AppServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* Register any application services.
|
|
*/
|
|
public function register(): void
|
|
{
|
|
// if (config('app.env') === 'production' && Str::contains(config('version'), ['nightly'])) {
|
|
// Process::run('php artisan migrate:fresh --force --seed --seeder=ProductionSeeder');
|
|
// }
|
|
}
|
|
|
|
/**
|
|
* Bootstrap any application services.
|
|
*/
|
|
public function boot(): void
|
|
{
|
|
Queue::after(function (JobProcessed $event) {
|
|
// @TODO: Remove `coolify-builder` container after the remoteProcess job is finishged and remoteProcess->type == `deployment`.
|
|
if ($event->job->resolveName() === CoolifyTask::class) {
|
|
}
|
|
});
|
|
}
|
|
}
|