mirror of
https://github.com/hauke68/Magallanes.git
synced 2025-09-13 20:50:18 +02:00
11 lines
222 B
Plaintext
11 lines
222 B
Plaintext
|
#!/usr/bin/env php
|
||
|
<?php
|
||
|
date_default_timezone_set('UTC');
|
||
|
|
||
|
require __DIR__ . '/../vendor/autoload.php';
|
||
|
|
||
|
use Mage\MageApplication;
|
||
|
|
||
|
$mage = new MageApplication();
|
||
|
$mage->configure(__DIR__ . '/../.mage.yml');
|
||
|
$mage->run();
|