-
Notifications
You must be signed in to change notification settings - Fork 143
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added new phpvms:dev-install command #176
- Loading branch information
Showing
3 changed files
with
96 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
<?php | ||
|
||
namespace App\Console\Commands; | ||
|
||
use App\Console\BaseCommand; | ||
use Modules\Installer\Services\ConfigService; | ||
|
||
/** | ||
* Create a fresh development install | ||
* @package App\Console\Commands | ||
*/ | ||
class DevInstall extends BaseCommand | ||
{ | ||
protected $signature = 'phpvms:dev-install'; | ||
protected $description = 'Run a developer install and run the sample migration'; | ||
|
||
/** | ||
* Run dev related commands | ||
* @throws \Symfony\Component\HttpFoundation\File\Exception\FileException | ||
*/ | ||
public function handle() | ||
{ | ||
$this->rewriteConfigs(); | ||
|
||
# Reload the configuration | ||
\App::boot(); | ||
|
||
$this->info('Recreating database'); | ||
\Artisan::call('database:create', [ | ||
'--reset' => true, | ||
]); | ||
|
||
$this->info(\Artisan::output()); | ||
|
||
# | ||
# | ||
|
||
$this->info('Running migrations'); | ||
\Artisan::call('migrate:fresh', [ | ||
'--seed' => true, | ||
]); | ||
|
||
$this->info(\Artisan::output()); | ||
|
||
# | ||
# | ||
|
||
$this->info('Importing sample data'); | ||
\Artisan::call('phpvms:import', [ | ||
'files' => ['app/Database/seeds/sample.yml'], | ||
]); | ||
|
||
$this->info(\Artisan::output()); | ||
|
||
$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!'); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters