friendica/index.php

14 lines
271 B
PHP
Raw Normal View History

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
require dirname(__DIR__) . '/vendor/autoload.php';
2010-07-01 23:48:07 +00:00
// We assume that the index.php is called by a frontend process
// The value is set to "true" by default in App
$a = new Friendica\App(__DIR__, false);
$a->runFrontend();