mirror of
https://github.com/friendica/friendica
synced 2024-12-22 22:00:16 +00:00
32 lines
1.1 KiB
PHP
32 lines
1.1 KiB
PHP
<?php
|
|
|
|
// Copyright (C) 2010-2024, the Friendica project
|
|
// SPDX-FileCopyrightText: 2010-2024 the Friendica project
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
use Dice\Dice;
|
|
|
|
$start_time = microtime(true);
|
|
|
|
if (!file_exists(__DIR__ . '/vendor/autoload.php')) {
|
|
die('Vendor path not found. Please execute "bin/composer.phar --no-dev install" on the command line in the web root.');
|
|
}
|
|
|
|
require __DIR__ . '/vendor/autoload.php';
|
|
|
|
$request = \GuzzleHttp\Psr7\ServerRequest::fromGlobals();
|
|
|
|
$dice = (new Dice())->addRules(include __DIR__ . '/static/dependencies.config.php');
|
|
/** @var \Friendica\Core\Addon\Capability\ICanLoadAddons $addonLoader */
|
|
$addonLoader = $dice->create(\Friendica\Core\Addon\Capability\ICanLoadAddons::class);
|
|
$dice = $dice->addRules($addonLoader->getActiveAddonConfig('dependencies'));
|
|
$dice = $dice->addRule(Friendica\App\Mode::class, ['call' => [['determineRunMode', [false, $request->getServerParams()], Dice::CHAIN_CALL]]]);
|
|
|
|
\Friendica\DI::init($dice);
|
|
|
|
\Friendica\Core\Logger\Handler\ErrorHandler::register($dice->create(\Psr\Log\LoggerInterface::class));
|
|
|
|
$a = \Friendica\App::fromDice($dice);
|
|
|
|
$a->processRequest($request, $start_time);
|