mirror of
https://github.com/hauke68/Magallanes.git
synced 2026-08-27 01:38:57 +02:00
New reorder of classes and configuration. New instantiation of Tasks.
This commit is contained in:
+12
-4
@@ -1,4 +1,12 @@
|
||||
<?php
|
||||
# mage install
|
||||
# mage init
|
||||
|
||||
# mage config add environment [production]
|
||||
# mage config add host prod_example@s05.example.com to:[production]
|
||||
# mage config git git://github.com/andres-montanez/Zend-Framework-Twig-example-app.git
|
||||
# mage config svn svn://example.com/repo
|
||||
|
||||
# mage deploy to:production
|
||||
# mage update
|
||||
# mage up
|
||||
@@ -9,12 +17,12 @@
|
||||
|
||||
$baseDir = dirname(dirname(__FILE__));
|
||||
|
||||
require_once $baseDir . '/Magallanes/Autoload.php';
|
||||
spl_autoload_register(array('Magallanes_Autoload', 'autoload'));
|
||||
require_once $baseDir . '/Mage/Autoload.php';
|
||||
spl_autoload_register(array('Mage_Autoload', 'autoload'));
|
||||
|
||||
Magallanes_Console::output('Begining Magallanes' . PHP_EOL . PHP_EOL);
|
||||
Mage_Console::output('Begining Magallanes' . PHP_EOL . PHP_EOL);
|
||||
|
||||
$console = new Magallanes_Console;
|
||||
$console = new Mage_Console;
|
||||
$console->setArgs($argv);
|
||||
$console->parse();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user