friendica/index.php

21 wiersze
486 B
PHP
Czysty Zwykły widok Historia

2010-07-01 23:48:07 +00:00
<?php
2010-12-09 07:08:59 +00:00
/**
* @file index.php
2011-11-12 12:21:14 +00:00
* Friendica
2010-12-09 07:08:59 +00:00
*/
2010-07-01 23:48:07 +00:00
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
$dice = new \Dice\Dice();
$dice = $dice->addRules(include __DIR__ . '/static/dependencies.config.php');
\Friendica\BaseObject::setDependencyInjection($dice);
$a = \Friendica\BaseObject::getApp();
$a->runFrontend();