friendica-github/index.php

25 lines
666 B
PHP
Raw Normal View History

2010-07-01 23:48:07 +00:00
<?php
// Copyright (C) 2010-2024, the Friendica project
// SPDX-FileCopyrightText: 2010-2024 the Friendica project
//
// SPDX-License-Identifier: AGPL-3.0-or-later
2010-07-01 23:48:07 +00:00
2019-08-05 07:02:55 +00:00
use Dice\Dice;
2020-12-09 22:10:27 +00:00
$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.');
}
2018-12-27 17:17:02 +00:00
require __DIR__ . '/vendor/autoload.php';
2010-07-01 23:48:07 +00:00
2024-12-19 20:07:37 +00:00
$request = \GuzzleHttp\Psr7\ServerRequest::fromGlobals();
2019-08-05 07:02:55 +00:00
$dice = (new Dice())->addRules(include __DIR__ . '/static/dependencies.config.php');
2021-10-23 18:46:17 +00:00
2024-12-23 15:26:35 +00:00
$app = \Friendica\App::fromDice($dice);
2024-12-23 15:26:35 +00:00
$app->processRequest($request, $start_time);