Files
Magallanes/bin/mage.php
T

38 lines
1.0 KiB
PHP
Raw Normal View History

2011-11-22 09:16:06 -02:00
<?php
# sudo mage install
2012-01-04 00:06:03 -02:00
# mage version
# mage upgrade
2011-11-23 23:45:04 -02:00
# mage config add host 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
2011-11-23 23:45:04 -02:00
# mage task:deployment/rsync to:production
2011-11-26 22:51:03 -02:00
# mage releases list to:production
# mage releases rollback to:production
2012-01-01 18:10:25 -02:00
# mage releases rollback -1 to:production
# mage releases rollback -2 to:production
# mage releases rollback -3 to:production
# mage releases rollback 0 to:production
# mage releases rollback 20120101172148 to:production
2011-11-26 22:51:03 -02:00
# mage add environment production --width-releases
2011-11-23 23:45:04 -02:00
# mage init
# mage add environment production
2011-11-22 09:16:06 -02:00
# mage deploy to:production
2011-11-27 11:05:06 -02:00
date_default_timezone_set('UTC');
2011-11-22 09:16:06 -02:00
$baseDir = dirname(dirname(__FILE__));
2012-02-15 18:46:26 -02:00
define('MAGALLANES_VERSION', '0.9.3');
2012-01-04 00:06:03 -02:00
require_once $baseDir . '/Mage/spyc.php';
require_once $baseDir . '/Mage/Autoload.php';
spl_autoload_register(array('Mage_Autoload', 'autoload'));
2011-11-22 09:16:06 -02:00
$console = new Mage_Console;
2011-11-22 09:16:06 -02:00
$console->setArgs($argv);
$console->parse();
$console->run();