1
0
mirror of https://github.com/moparisthebest/wallabag synced 2025-02-16 23:20:09 -05:00
Go to file
Nicolas Lœuillet 934a0c6848 when we delete entry, we redirect to homepage.
it's not the best way, but it's better than redirect to the referer, for example, when we're reading the entry
2014-05-30 18:11:07 +02:00
app changed everything from Poche to Wallabag 2014-05-20 16:25:29 +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 changed everything from Poche to Wallabag 2014-05-20 16:25:29 +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
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
LICENSE Add LICENSE file 2013-11-21 10:00:00 +01:00
phpunit.xml changed everything from Poche to Wallabag 2014-05-20 16:25:29 +02:00
README.md changed everything from Poche to Wallabag 2014-05-20 16:25:29 +02:00

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