]> git.immae.eu Git - github/wallabag/wallabag.git/blame - index.php
1.9.0 version
[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
0a749cff 11define ('POCHE', '1.9.0');
9c67b1b8 12require 'check_essentials.php';
9c67b1b8 13require 'check_setup.php';
211068ce 14require_once 'inc/poche/global.inc.php';
bb5a7d9e 15
26b77483
NL
16// Start session
17Session::$sessionName = 'wallabag';
18Session::init();
752cd4a8 19
26b77483
NL
20// Let's rock !
21$wallabag = new Poche();
d0287608 22$wallabag->run();