mirror of
https://github.com/coollabsio/coolify-examples.git
synced 2026-02-18 21:38:58 +00:00
67 lines
2.3 KiB
PHP
67 lines
2.3 KiB
PHP
#!/usr/bin/env php
|
|
<?php
|
|
|
|
use Shopware\Core\Framework\Adapter\Kernel\KernelFactory;
|
|
use Shopware\Core\Framework\Plugin\KernelPluginLoader\ComposerPluginLoader;
|
|
use Shopware\Core\Framework\Plugin\KernelPluginLoader\DbalKernelPluginLoader;
|
|
use Shopware\Core\Framework\Plugin\KernelPluginLoader\StaticKernelPluginLoader;
|
|
use Shopware\Core\Kernel;
|
|
use Symfony\Bundle\FrameworkBundle\Console\Application;
|
|
use Symfony\Component\Console\Input\ArgvInput;
|
|
|
|
$envFile = __DIR__ . '/../.env';
|
|
|
|
if (!file_exists(__DIR__ . '/../.env') && !file_exists(__DIR__ . '/../.env.dist') && !file_exists(__DIR__ . '/../.env.local.php')) {
|
|
$_SERVER['APP_RUNTIME_OPTIONS']['disable_dotenv'] = true;
|
|
}
|
|
|
|
require_once __DIR__ . '/../vendor/autoload_runtime.php';
|
|
|
|
return static function (array &$context) {
|
|
set_time_limit(0);
|
|
|
|
$classLoader = require __DIR__ . '/../vendor/autoload.php';
|
|
|
|
if (!class_exists(Application::class)) {
|
|
throw new RuntimeException('You need to add "symfony/framework-bundle" as a Composer dependency.');
|
|
}
|
|
|
|
if (!isset($context['PROJECT_ROOT'])) {
|
|
$context['PROJECT_ROOT'] = dirname(__DIR__);
|
|
}
|
|
|
|
$input = new ArgvInput();
|
|
$env = $input->getParameterOption(['--env', '-e'], $context['APP_ENV'] ?? 'prod', true);
|
|
$debug = ($context['APP_DEBUG'] ?? ($env !== 'prod')) && !$input->hasParameterOption('--no-debug', true);
|
|
|
|
$pluginLoader = new StaticKernelPluginLoader($classLoader, null);
|
|
|
|
if ($input->getFirstArgument() === 'system:install') {
|
|
$context['INSTALL'] = true;
|
|
}
|
|
|
|
if (!isset($context['INSTALL'])) {
|
|
$useComposerPluginLoader = (bool) ($context['COMPOSER_PLUGIN_LOADER'] ?? false);
|
|
if ($useComposerPluginLoader) {
|
|
$pluginLoader = new ComposerPluginLoader($classLoader, null);
|
|
} elseif (trim($context['DATABASE_URL'] ?? '') !== '') {
|
|
$pluginLoader = new DbalKernelPluginLoader($classLoader, null, Kernel::getConnection());
|
|
}
|
|
}
|
|
|
|
$kernel = KernelFactory::create(
|
|
environment: $env,
|
|
debug: $debug,
|
|
classLoader: $classLoader,
|
|
pluginLoader: $pluginLoader,
|
|
);
|
|
|
|
$application = new Application($kernel);
|
|
$kernel->boot();
|
|
|
|
$application->setName('Shopware');
|
|
$application->setVersion($kernel->getContainer()->getParameter('kernel.shopware_version'));
|
|
|
|
return $application;
|
|
};
|