mirror of
https://github.com/hauke68/Magallanes.git
synced 2026-08-29 10:38:57 +02:00
Tweaks on configs.
Added Init command.
This commit is contained in:
+3
-6
@@ -10,7 +10,7 @@ class Mage_Task_Add
|
||||
|
||||
// Check if there is already an environment with the same name
|
||||
if (file_exists($environmentConfigFile)) {
|
||||
Mage_Console::output('<light_red>Error!!</light_red> Already exists an environment called <dark_gray>' . $environmentName . '</dark_gray>');
|
||||
Mage_Console::output('<light_red>Error!!</light_red> Already exists an environment called <dark_gray>' . $environmentName . '</dark_gray>', 1, 2);
|
||||
} else {
|
||||
$baseConfig = '#' . $environmentName . PHP_EOL
|
||||
. 'user: dummy' . PHP_EOL
|
||||
@@ -25,13 +25,10 @@ class Mage_Task_Add
|
||||
|
||||
if ($result) {
|
||||
Mage_Console::output('<light_green>Success!!</light_green> Environment config file for <dark_gray>' . $environmentName . '</dark_gray> created successfully at <blue>' . $environmentConfigFile . '</blue>');
|
||||
Mage_Console::output('<dark_gray>So please! Review and adjust its configuration.</dark_gray>', 2);
|
||||
Mage_Console::output('<dark_gray>So please! Review and adjust its configuration.</dark_gray>', 2, 2);
|
||||
} else {
|
||||
Mage_Console::output('<light_red>Error!!</light_red> Unable to create config file for environment called <dark_gray>' . $environmentName . '</dark_gray>');
|
||||
Mage_Console::output('<light_red>Error!!</light_red> Unable to create config file for environment called <dark_gray>' . $environmentName . '</dark_gray>', 1, 2);
|
||||
}
|
||||
}
|
||||
|
||||
Mage_Console::output('');
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
class Mage_Task_Init
|
||||
{
|
||||
public function run()
|
||||
{
|
||||
$configDir = '.mage';
|
||||
|
||||
Mage_Console::output('Initiating managing process for application with <dark_gray>Magallanes</dark_gray>');
|
||||
|
||||
// Check if there is already a config dir
|
||||
if (file_exists($configDir)) {
|
||||
Mage_Console::output('<light_red>Error!!</light_red> Already exists <dark_gray>.mage</dark_gray> directory.', 1, 2);
|
||||
} else {
|
||||
$results = array();
|
||||
$results[] = mkdir($configDir);
|
||||
$results[] = mkdir($configDir . '/logs');
|
||||
$results[] = mkdir($configDir . '/tasks');
|
||||
$results[] = mkdir($configDir . '/config');
|
||||
$results[] = mkdir($configDir . '/config/environment');
|
||||
$results[] = file_put_contents($configDir . '/config/global.yaml', '#global settings' . PHP_EOL . PHP_EOL);
|
||||
$results[] = file_put_contents($configDir . '/config/scm.yaml', '#scm settings' . PHP_EOL . PHP_EOL);
|
||||
|
||||
if (!in_array(false, $results)) {
|
||||
Mage_Console::output('<light_green>Success!!</light_green> The configuration for <dark_gray>Magallanes</dark_gray> has been generated at <blue>.mage</blue> directory.');
|
||||
Mage_Console::output('<dark_gray>Please!! Review and adjust the configuration.</dark_gray>', 2, 2);
|
||||
} else {
|
||||
Mage_Console::output('<light_red>Error!!</light_red> Unable to generate the configuration.', 1, 2);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user