]> git.immae.eu Git - github/wallabag/wallabag.git/blame - index.php
WHAT. A. BIG. REFACTOR. + new license (we moved to MIT one)
[github/wallabag/wallabag.git] / index.php
CommitLineData
1a268ba7
NL
1<?php
2/**
c95b78a8 3 * wallabag, self hostable application allowing you to not miss any content anymore
1a268ba7 4 *
c95b78a8
NL
5 * @category wallabag
6 * @author Nicolas Lœuillet <nicolas@loeuillet.org>
1a268ba7 7 * @copyright 2013
3602405e 8 * @license http://opensource.org/licenses/MIT see COPYING file
1a268ba7
NL
9 */
10
3602405e 11define ('POCHE', '1.8.0');
792097fb 12require 'check_setup.php';
00dbaf90 13require_once 'inc/poche/global.inc.php';
bb5a7d9e 14
a13ff957 15if (defined('ERROR_REPORTING')) {
16 error_reporting(ERROR_REPORTING);
752cd4a8
MR
17}
18
3602405e
NL
19// Start session
20Session::$sessionName = 'wallabag';
ad53faf2 21Session::init();
eb5b6772 22
3602405e
NL
23// Let's rock !
24$wallabag = new Poche();
25$wallabag->run();