move market data seeder to dedicated command
This commit is contained in:
@@ -0,0 +1,62 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Console\Commands;
|
||||||
|
|
||||||
|
use App\Models\Split;
|
||||||
|
use App\Models\Holding;
|
||||||
|
use Illuminate\Console\Command;
|
||||||
|
use Illuminate\Support\Facades\DB;
|
||||||
|
use Database\Seeders\MarketDataSeeder;
|
||||||
|
use Illuminate\Support\Facades\Artisan;
|
||||||
|
|
||||||
|
class SeedMarketData extends Command
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* The name and signature of the console command.
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
protected $signature = 'seed:market-data
|
||||||
|
{--force : Will seed even if table already has data.}';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The console command description.
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
*/
|
||||||
|
protected $description = 'Seeds baseline market data';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create a new command instance.
|
||||||
|
*
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function __construct()
|
||||||
|
{
|
||||||
|
parent::__construct();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Execute the console command.
|
||||||
|
*
|
||||||
|
* @return int
|
||||||
|
*/
|
||||||
|
public function handle()
|
||||||
|
{
|
||||||
|
if (
|
||||||
|
DB::table('market_data')->count() === 0
|
||||||
|
|| $this->option('force', false)
|
||||||
|
) {
|
||||||
|
|
||||||
|
Artisan::call('db:seed', [
|
||||||
|
'--class' => MarketDataSeeder::class,
|
||||||
|
]);
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->line('Skipped seeding market data... Table already has data!');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -31,10 +31,6 @@ class CreateMarketDataTable extends Migration
|
|||||||
$table->json('meta_data')->nullable();
|
$table->json('meta_data')->nullable();
|
||||||
$table->timestamps();
|
$table->timestamps();
|
||||||
});
|
});
|
||||||
|
|
||||||
Artisan::call('db:seed', [
|
|
||||||
'--class' => MarketDataSeeder::class,
|
|
||||||
]);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -71,7 +71,7 @@ class MarketDataSeeder extends Seeder
|
|||||||
// Close the CSV file
|
// Close the CSV file
|
||||||
fclose($handle);
|
fclose($handle);
|
||||||
|
|
||||||
echo "Imported $rowCount items successfully!\n";
|
echo "Imported $rowCount market data items successfully!\n";
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
|
|||||||
@@ -29,5 +29,8 @@ echo "====================== Installing NPM dependencies and building frontend..
|
|||||||
echo "====================== Running migrations... ====================== "
|
echo "====================== Running migrations... ====================== "
|
||||||
/usr/local/bin/php artisan migrate --force
|
/usr/local/bin/php artisan migrate --force
|
||||||
|
|
||||||
|
echo "====================== Running seeders... ====================== "
|
||||||
|
/usr/local/bin/php artisan seed:market-data
|
||||||
|
|
||||||
echo "====================== Spinning up Supervisor daemon... ====================== "
|
echo "====================== Spinning up Supervisor daemon... ====================== "
|
||||||
exec /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.conf
|
exec /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.conf
|
||||||
|
|||||||
Reference in New Issue
Block a user