]> git.mxchange.org Git - friendica.git/blob - index.php
Fix Friendica node info json
[friendica.git] / index.php
1 <?php
2 /**
3  * @file index.php
4  * Friendica
5  */
6
7 use Friendica\App;
8
9 require_once 'boot.php';
10
11 // We assume that the index.php is called by a frontend process
12 // The value is set to "true" by default in App
13 $a = new App(__DIR__, false);
14
15 $a->runFrontend();