magallanes/bin/mage

11 lines
207 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:22:10 +01:00
require __DIR__ . '/../../../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();