]> git.immae.eu Git - github/wallabag/wallabag.git/blob - index.php
1.9.2 :rocket:
[github/wallabag/wallabag.git] / index.php
1 <?php
2 /**
3 * wallabag, self hostable application allowing you to not miss any content anymore
4 *
5 * @category wallabag
6 * @author Nicolas LÅ“uillet <nicolas@loeuillet.org>
7 * @copyright 2013
8 * @license http://opensource.org/licenses/MIT see COPYING file
9 */
10
11 define ('POCHE', '1.9.2');
12 require 'check_essentials.php';
13 require 'check_setup.php';
14 require_once 'inc/poche/global.inc.php';
15
16 // Start session
17 Session::$sessionName = 'wallabag';
18 Session::init(true);
19
20 // Let's rock !
21 $wallabag = new Poche();
22 $wallabag->run();