mirror of
https://github.com/elyby/accounts.git
synced 2024-11-06 08:11:24 +05:30
17 lines
513 B
PHP
Executable File
17 lines
513 B
PHP
Executable File
#!/usr/bin/env php
|
|
<?php
|
|
require __DIR__ . '/vendor/autoload.php';
|
|
|
|
defined('YII_DEBUG') || define('YII_DEBUG', (bool)getenv('YII_DEBUG'));
|
|
defined('YII_ENV') || define('YII_ENV', getenv('YII_ENV'));
|
|
|
|
require __DIR__ . '/vendor/yiisoft/yii2/Yii.php';
|
|
require __DIR__ . '/common/config/bootstrap.php';
|
|
require __DIR__ . '/console/config/bootstrap.php';
|
|
|
|
$config = \common\config\ConfigLoader::load('console');
|
|
|
|
$application = new yii\console\Application($config);
|
|
$exitCode = $application->run();
|
|
exit($exitCode);
|