1
0
mirror of https://github.com/moparisthebest/wallabag synced 2024-12-18 13:42:17 -05:00

Bootstrap files and directories

This commit is contained in:
Vincent Jousse 2013-11-21 10:15:29 +01:00
parent ca23b87750
commit 9e6c26a203
3 changed files with 6 additions and 0 deletions

1
src/app.php Normal file
View File

@ -0,0 +1 @@
<?php

1
src/controllers.php Normal file
View File

@ -0,0 +1 @@

View File

@ -9,5 +9,9 @@ require_once __DIR__.'/../vendor/autoload.php';
$app = new Silex\Application(); $app = new Silex\Application();
require_once __DIR__.'/../src/app.php';
require_once __DIR__.'/../src/controllers.php';
$app['debug'] = true;
$app->run(); $app->run();