friendica/index.php

20 lines
487 B
PHP
Raw Normal View History

2010-07-02 01:48:07 +02:00
<?php
2010-12-09 08:08:59 +01:00
/**
* @file index.php
2011-11-12 13:21:14 +01:00
* Friendica
2010-12-09 08:08:59 +01:00
*/
2010-07-02 01:48:07 +02:00
2019-02-03 22:22:04 +01:00
use Friendica\Factory;
2018-12-30 21:42:56 +01: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 18:17:02 +01:00
require __DIR__ . '/vendor/autoload.php';
2010-07-02 01:48:07 +02:00
// We assume that the index.php is called by a frontend process
// The value is set to "true" by default in App
2019-02-12 20:12:25 +01:00
$a = Factory\DependencyFactory::setUp('index', __DIR__, true);
$a->runFrontend();