friendica-github/index.php

23 lines
536 B
PHP
Raw Normal View History

2010-07-01 16:48:07 -07:00
<?php
2010-12-08 23:08:59 -08: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
2018-12-30 21:42:56 +01:00
use Friendica\App;
2018-12-30 21:42:56 +01:00
use Friendica\Util\LoggerFactory;
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 17:17:02 +00:00
require __DIR__ . '/vendor/autoload.php';
2010-07-01 16:48:07 -07:00
2018-12-30 21:42:56 +01:00
$logger = LoggerFactory::create('index');
// We assume that the index.php is called by a frontend process
// The value is set to "true" by default in App
2018-12-30 21:42:56 +01:00
$a = new App(__DIR__, $logger, false);
$a->runFrontend();