1
0
mirror of https://github.com/moparisthebest/wallabag synced 2024-11-15 13:45:04 -05:00
wallabag/README.md
2013-11-23 10:45:29 +01:00

33 lines
964 B
Markdown
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Poche v2 [![Build Status](https://travis-ci.org/inthepoche/poche.png?branch=v2-silex)](https://travis-ci.org/inthepoche/poche)
This is a Proof of Concept of Poche v2 using the PHP micro-framework [Silex](http://silex.sensiolabs.org).
# 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](http://silex.sensiolabs.org/doc/web_servers.html).
If you are using PHP 5.4 you can run Poche v2 by using the embedded webserver:
php -S localhost:8080 -t web web/index.php
Poche should now be running at [http://localhost:8080](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