]> git.immae.eu Git - github/wallabag/wallabag.git/blame_incremental - index.php
1.9.0 version
[github/wallabag/wallabag.git] / index.php
... / ...
CommitLineData
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
11define ('POCHE', '1.9.0');
12require 'check_essentials.php';
13require 'check_setup.php';
14require_once 'inc/poche/global.inc.php';
15
16// Start session
17Session::$sessionName = 'wallabag';
18Session::init();
19
20// Let's rock !
21$wallabag = new Poche();
22$wallabag->run();