mirror of
https://github.com/coollabsio/coolify-examples.git
synced 2026-02-27 01:38:58 +00:00
Add Shopware 6 example (#61)
This commit is contained in:
55
shopware6/bin/ci
Normal file
55
shopware6/bin/ci
Normal file
@@ -0,0 +1,55 @@
|
||||
#!/usr/bin/env php
|
||||
<?php
|
||||
|
||||
use Shopware\Core\Framework\Adapter\Kernel\KernelFactory;
|
||||
use Shopware\Core\Framework\Plugin\KernelPluginLoader\ComposerPluginLoader;
|
||||
use Symfony\Bundle\FrameworkBundle\Console\Application;
|
||||
use Symfony\Component\Console\Input\ArgvInput;
|
||||
|
||||
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);
|
||||
|
||||
if ($input->getFirstArgument() === 'system:install') {
|
||||
$context['INSTALL'] = true;
|
||||
}
|
||||
|
||||
if (trim($context['DATABASE_URL'] ?? '') === '') {
|
||||
// fake DATABASE_URL
|
||||
$_SERVER['DATABASE_URL'] = 'mysql://_placeholder.test';
|
||||
}
|
||||
|
||||
$kernel = KernelFactory::create(
|
||||
environment: $env,
|
||||
debug: $debug,
|
||||
classLoader: $classLoader,
|
||||
pluginLoader: new ComposerPluginLoader($classLoader, null),
|
||||
);
|
||||
|
||||
$application = new Application($kernel);
|
||||
$kernel->boot();
|
||||
|
||||
$application->setName('Shopware');
|
||||
$application->setVersion($kernel->getContainer()->getParameter('kernel.shopware_version'));
|
||||
|
||||
return $application;
|
||||
};
|
||||
Reference in New Issue
Block a user