Go to file
Nicolas Lœuillet d711a35de7 fix doctrine mapping 2014-11-12 13:14:00 +01:00
app fix doctrine mapping 2014-11-12 13:14:00 +01:00
src fix doctrine mapping 2014-11-12 13:14:00 +01:00
web API, Admin, Stuff 2014-09-11 17:00:47 +02:00
.gitignore Initial commit 2014-08-03 18:39:38 +02:00
LICENSE Put back README and LICENCE files 2014-08-04 01:21:35 +02:00
README.md Put back README and LICENCE files 2014-08-04 01:21:35 +02:00
composer.json draft for oAuth 2014-10-08 17:15:50 +02:00
composer.lock API, Admin, Stuff 2014-09-11 17:00:47 +02:00

README.md

wallabag v2 Build Status

This is a Proof o f Concept of wallabag v2 using the PHP framework Symfony.

Installation

Get Composer and install Silex:

curl -s http://getcomposer.org/installer | php
php composer.phar install

Then configure your webserver to point to the web/ directory. Some documentation is available on the Silex documentation page.

If you are using PHP 5.4 you can run wallabag v2 by using the embedded webserver:

php -S localhost:8080 -t web web/index.php

wallabag should now be running at http://localhost:8080.

Test

For unit tests (using Atoum) use:

./console tests:unit

For functional tests you'll need phpunit:

phpunit