mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-01 14:49:15 +00:00
22 lines
528 B
PHP
Executable file
22 lines
528 B
PHP
Executable file
<?php
|
|
/**
|
|
* wallabag, self hostable application allowing you to not miss any content anymore
|
|
*
|
|
* @category wallabag
|
|
* @author Nicolas Lœuillet <nicolas@loeuillet.org>
|
|
* @copyright 2013
|
|
* @license http://opensource.org/licenses/MIT see COPYING file
|
|
*/
|
|
|
|
define ('POCHE', '1.8.1');
|
|
require 'check_essentials.php';
|
|
require 'check_setup.php';
|
|
require_once 'inc/poche/global.inc.php';
|
|
|
|
// Start session
|
|
Session::$sessionName = 'wallabag';
|
|
Session::init();
|
|
|
|
// Let's rock !
|
|
$wallabag = new Poche();
|
|
$wallabag->run();
|