2 Commits

Auteur SHA1 Bericht Datum
b842fc043f add generic Composer task 2024-11-19 16:21:30 +01:00
dac1b6ecf9 improve command 2024-11-06 22:27:08 +01:00
5 gewijzigde bestanden met toevoegingen van 24 en 7 verwijderingen

Bestand weergeven

@ -4,7 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [unreleased](https://git.d3data.de/D3Public/OXID-Deployer/compare/1.0.0.1...rel_1.x)
## [unreleased](https://git.d3data.de/D3Public/OXID-Deployer/compare/1.0.1.0...rel_1.x)
## [1.0.1.0](https://git.d3data.de/D3Public/OXID-Deployer/compare/1.0.0.1...1.0.1.0) - 2024-11-19
### Added
- generic Composer task `dep composer [stage] --cmd="show oxid-esales/*"
## [1.0.0.1](https://git.d3data.de/D3Public/OXID-Deployer/compare/1.0.0.0...1.0.0.1) - 2024-11-04
### Changed

Bestand weergeven

@ -10,6 +10,9 @@ See [Deployer OXID recipe project](https://packagist.org/packages/d3/oxid-deploy
## available tasks
### generic
- dep `composer` [stage] [--cmd="show d3/*"] - execute generic Composer commands
### OXID
- dep `oxid:getVersion` [stage] - show version of current OXID installation
- dep `oxid:cloneDatabase` [stage] - dump contents from source to destination database

14
recipe/composerTasks.php Normal file
Bestand weergeven

@ -0,0 +1,14 @@
<?php
namespace Deployer;
use \Symfony\Component\Console\Input\InputOption;
option('cmd', null, InputOption::VALUE_REQUIRED, 'full Composer command');
desc('run generic composer commands');
task('composer', function () {
$command = input()->getOption('cmd');
cd('{{release_or_current_path}}');
writeln(run('printf "\n" && {{bin/composer}} '.$command));
});

Bestand weergeven

@ -7,6 +7,7 @@ require_once __DIR__.'/../../../deployer/deployer/recipe/composer.php';
require_once __DIR__.'/setup.php';
require_once __DIR__.'/menu.php';
require_once __DIR__.'/hooks.php';
require_once __DIR__.'/composerTasks.php';
require_once __DIR__.'/databaseTasks.php';
require_once __DIR__.'/deployTasks.php';
require_once __DIR__.'/setupTasks.php';

Bestand weergeven

@ -20,12 +20,7 @@ task('setup:createDbConfig', function () {
run("touch {{db_conf_path}}");
}
if (test("[ -f {{db_conf_path}} ]")) {
$db_host = ask('database host', 'localhost');
$db_port = ask('database port', '3306');
$db_name = ask('database name');
$db_user = ask('database user');
$db_pass = askHiddenResponse('database password');
run('printf "[client]\nuser='.$db_user.'\npassword=\"'.$db_pass.'\"\nhost='.$db_host.'\nport='.$db_port.'\n\n[mysql]\ndatabase=\"'.$db_name.'\"" > {{db_conf_path}}');
run('printf "[client]\nhost=\"'.ask('database host', 'localhost').'\"\nport=\"'.ask('database port', '3306').'\"\nuser=\"'.ask('database user').'\"\npassword=\"'.askHiddenResponse('database password').'\"\n\n[mysql]\ndatabase=\"'.ask('database name').'\"" > {{db_conf_path}}');
info('config successful created');
} else {
throw new \RuntimeException('can not create {{db_conf_path}}, task stopped');