mirror of https://github.com/hauke68/Magallanes
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
510 B
21 lines
510 B
<?php
|
|
# mage deploy to:production
|
|
# mage update
|
|
# mage up
|
|
# mage task:init to:production
|
|
# mage run:full-deployment to:production
|
|
|
|
# full-deployment = update, deploy to:production
|
|
|
|
$baseDir = dirname(dirname(__FILE__));
|
|
|
|
require_once $baseDir . '/Magallanes/Autoload.php';
|
|
spl_autoload_register(array('Magallanes_Autoload', 'autoload'));
|
|
|
|
Magallanes_Console::output('Begining Magallanes' . PHP_EOL . PHP_EOL);
|
|
|
|
$console = new Magallanes_Console;
|
|
$console->setArgs($argv);
|
|
$console->parse();
|
|
|
|
$console->run();
|
|
|