magallanes/bin/mage

15 lines
379 B
Plaintext
Raw Normal View History

2016-12-31 07:52:25 +01:00
#!/usr/bin/env php
<?php
date_default_timezone_set('UTC');
2016-12-31 08:32:47 +01:00
if (file_exists(__DIR__ . '/../../../autoload.php')) {
require __DIR__ . '/../../../autoload.php';
} elseif (file_exists(__DIR__ . '/../vendor/autoload.php')) {
require __DIR__ . '/../vendor/autoload.php';
}
2016-12-31 07:52:25 +01:00
use Mage\MageApplication;
$mage = new MageApplication();
2016-12-31 08:22:10 +01:00
$mage->configure('.mage.yml');
2016-12-31 07:52:25 +01:00
$mage->run();