correct permissions

This commit is contained in:
hackerESQ
2024-09-08 21:36:37 -05:00
parent 1a8e43f790
commit 94c3ab6236
3 changed files with 17 additions and 65 deletions
-62
View File
@@ -1,62 +0,0 @@
<?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,6 +31,10 @@ class CreateMarketDataTable extends Migration
$table->json('meta_data')->nullable();
$table->timestamps();
});
Artisan::call('db:seed', [
'--class' => MarketDataSeeder::class,
]);
}
/**
+13 -3
View File
@@ -2,6 +2,14 @@
cd /var/www/app
if [[ "$OSTYPE" == "darwin"* ]]; then
# macOS
OWNER=$(stat -f '%Su' storage)
else
# Linux
OWNER=$(stat -c '%U' storage)
fi
echo "====================== Running entrypoint script... ====================== "
if [ ! -f ".env" ]; then
echo " > Ope, gotta create an .env file!"
@@ -16,6 +24,11 @@ echo "====================== Installing Composer dependencies... ==============
/usr/local/bin/composer install
echo "====================== Validating environment... ====================== "
if [ "$OWNER" != "www-data" ]; then
echo " > Setting correct permissions for storage directory..."
chown -R www-data:www-data storage
fi
if ( ! grep -q "^APP_KEY=" ".env" || grep -q "^APP_KEY=$" ".env"); then
echo " > Ah, APP_KEY is missing in .env file. Generating a new key!"
@@ -29,8 +42,5 @@ echo "====================== Installing NPM dependencies and building frontend..
echo "====================== Running migrations... ====================== "
/usr/local/bin/php artisan migrate --force
echo "====================== Running seeders... ====================== "
/usr/local/bin/php artisan seed:market-data
echo "====================== Spinning up Supervisor daemon... ====================== "
exec /usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.conf