ec4f10d43a
* Update composer package versions * Laravel version * Change theme in the admin settings page closes #359 * Fix comment
90 lines
2.1 KiB
PHP
90 lines
2.1 KiB
PHP
<?php
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
use App\Contracts\Command;
|
|
use Modules\Installer\Services\ConfigService;
|
|
|
|
/**
|
|
* Create a fresh development install
|
|
*/
|
|
class DevInstall extends Command
|
|
{
|
|
protected $signature = 'phpvms:dev-install {--reset-db} {--reset-configs}';
|
|
protected $description = 'Run a developer install and run the sample migration';
|
|
|
|
private $databaseSeeder;
|
|
|
|
public function __construct(\DatabaseSeeder $databaseSeeder)
|
|
{
|
|
parent::__construct();
|
|
|
|
$this->databaseSeeder = $databaseSeeder;
|
|
}
|
|
|
|
/**
|
|
* Run dev related commands
|
|
*
|
|
* @throws \Symfony\Component\HttpFoundation\File\Exception\FileException
|
|
*/
|
|
public function handle()
|
|
{
|
|
if ($this->option('reset-configs')) {
|
|
$this->rewriteConfigs();
|
|
}
|
|
|
|
// Reload the configuration
|
|
\App::boot();
|
|
|
|
$this->info('Recreating database');
|
|
$this->call('database:create', [
|
|
'--reset' => true,
|
|
]);
|
|
|
|
$this->info('Running migrations');
|
|
$this->call('migrate:fresh', [
|
|
'--seed' => true,
|
|
]);
|
|
|
|
$this->info('Done!');
|
|
}
|
|
|
|
/**
|
|
* Rewrite the configuration files
|
|
*
|
|
* @throws \Symfony\Component\HttpFoundation\File\Exception\FileException
|
|
*/
|
|
protected function rewriteConfigs()
|
|
{
|
|
$cfgSvc = app(ConfigService::class);
|
|
|
|
$this->info('Removing the old config files');
|
|
|
|
// Remove the old files
|
|
$config_file = base_path('config.php');
|
|
if (file_exists($config_file)) {
|
|
unlink($config_file);
|
|
}
|
|
|
|
$env_file = base_path('env.php');
|
|
if (file_exists($env_file)) {
|
|
unlink($env_file);
|
|
}
|
|
|
|
$this->info('Removing the sqlite db');
|
|
$db_file = storage_path('db.sqlite');
|
|
if (file_exists($db_file)) {
|
|
unlink($db_file);
|
|
}
|
|
|
|
$this->info('Regenerating the config files');
|
|
$cfgSvc->createConfigFiles([
|
|
'APP_ENV' => 'dev',
|
|
'SITE_NAME' => 'phpvms test',
|
|
'DB_CONN' => 'sqlite',
|
|
]);
|
|
|
|
$this->info('Config files generated!');
|
|
}
|
|
}
|