Go to file
Nicolas Lœuillet 6fc85b8989 remove useless keyboard shortcuts 2014-05-30 18:15:12 +02:00
app replace 'poching a link' 2014-05-30 18:12:50 +02:00
src/Wallabag when we delete entry, we redirect to homepage. 2014-05-30 18:11:07 +02:00
tests changed everything from Poche to Wallabag 2014-05-20 16:25:29 +02:00
vendor/full-text-rss Add full-text-rss lib 2013-12-10 16:19:15 +01:00
web remove useless keyboard shortcuts 2014-05-30 18:15:12 +02:00
.gitignore changed everything from Poche to Wallabag 2014-05-20 16:25:29 +02:00
.travis.yml Launch phpunit on travis 2013-11-23 00:17:39 +01:00
LICENSE Add LICENSE file 2013-11-21 10:00:00 +01:00
README.md changed everything from Poche to Wallabag 2014-05-20 16:25:29 +02:00
composer.json changed everything from Poche to Wallabag 2014-05-20 16:25:29 +02:00
console changed everything from Poche to Wallabag 2014-05-20 16:25:29 +02:00
phpunit.xml changed everything from Poche to Wallabag 2014-05-20 16:25:29 +02:00

README.md

wallabag v2 Build Status

This is a Proof of Concept of wallabag v2 using the PHP micro-framework Silex.

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.

Then you should initialize your database by running:

./console db:create

Test

For unit tests (using Atoum) use:

./console tests:unit

For functional tests you'll need phpunit:

phpunit