2010-07-01 16:48:07 -07:00
|
|
|
<?php
|
2010-12-08 23:08:59 -08:00
|
|
|
/**
|
2017-11-16 13:05:41 -05:00
|
|
|
* @file index.php
|
2011-11-12 04:21:14 -08:00
|
|
|
* Friendica
|
2010-12-08 23:08:59 -08:00
|
|
|
*/
|
2010-07-01 16:48:07 -07:00
|
|
|
|
2019-02-03 22:22:04 +01:00
|
|
|
use Friendica\Factory;
|
2018-12-30 21:42:56 +01:00
|
|
|
|
2019-01-18 19:10:05 +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 16:48:07 -07:00
|
|
|
|
2019-02-18 00:26:38 +01:00
|
|
|
$a = Factory\DependencyFactory::setUp('index', __DIR__, false);
|
2016-07-02 08:54:57 +02:00
|
|
|
|
2018-10-21 22:24:47 -04:00
|
|
|
$a->runFrontend();
|
2019-02-19 01:56:41 +01:00
|
|
|
|