friendica/index.php

19 lines
377 B
PHP
Raw Normal View History

2010-07-01 19:48:07 -04:00
<?php
2010-12-09 02:08:59 -05:00
/**
* @file index.php
2011-11-12 07:21:14 -05:00
* Friendica
2010-12-09 02:08:59 -05:00
*/
2010-07-01 19:48:07 -04:00
2019-02-03 16:22:04 -05:00
use Friendica\Factory;
2018-12-30 15:42:56 -05: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 12:17:02 -05:00
require __DIR__ . '/vendor/autoload.php';
2010-07-01 19:48:07 -04:00
2019-02-17 18:26:38 -05:00
$a = Factory\DependencyFactory::setUp('index', __DIR__, false);
$a->runFrontend();