feat: add seeder command and configuration for database seeding
This commit is contained in:
24
app/Console/Commands/Seeder.php
Normal file
24
app/Console/Commands/Seeder.php
Normal file
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
namespace App\Console\Commands;
|
||||
|
||||
use Illuminate\Console\Command;
|
||||
|
||||
class Seeder extends Command
|
||||
{
|
||||
protected $signature = 'start:seeder';
|
||||
|
||||
protected $description = 'Start Seeder';
|
||||
|
||||
public function handle()
|
||||
{
|
||||
if (config('constants.seeder.is_seeder_enabled')) {
|
||||
$this->info('Seeder is enabled on this server.');
|
||||
$this->call('db:seed', ['--class' => 'ProductionSeeder', '--force' => true]);
|
||||
exit(0);
|
||||
} else {
|
||||
$this->info('Seeder is disabled on this server.');
|
||||
exit(0);
|
||||
}
|
||||
}
|
||||
}
|
@@ -37,6 +37,10 @@ return [
|
||||
'is_migration_enabled' => env('MIGRATION_ENABLED', true),
|
||||
],
|
||||
|
||||
'seeder' => [
|
||||
'is_seeder_enabled' => env('SEEDER_ENABLED', true),
|
||||
],
|
||||
|
||||
'horizon' => [
|
||||
'is_horizon_enabled' => env('HORIZON_ENABLED', true),
|
||||
'is_scheduler_enabled' => env('SCHEDULER_ENABLED', true),
|
||||
|
@@ -6,10 +6,7 @@ cd /var/www/html
|
||||
foreground {
|
||||
php
|
||||
artisan
|
||||
db:seed
|
||||
--class
|
||||
ProductionSeeder
|
||||
--force
|
||||
start:seeder
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user