aboutsummaryrefslogblamecommitdiffhomepage
path: root/index.php
blob: b556d28009582767a921c448f12166e4f97d70d8 (plain) (tree)
1
2
3
4
5
6
7
8
9
10

     
                                                                                   
  

                                                        
                   
                                                                  

   
                          
                               
                          
                                        
 

                                   
                    
 

                        
                 
<?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.9.2');
require 'check_essentials.php';
require 'check_setup.php';
require_once 'inc/poche/global.inc.php';

// Start session
Session::$sessionName = 'wallabag';
Session::init(true);

// Let's rock !
$wallabag = new Poche();
$wallabag->run();