]> git.immae.eu Git - github/wallabag/wallabag.git/blame_incremental - README.md
how installing poche
[github/wallabag/wallabag.git] / README.md
... / ...
CommitLineData
1# poche
2Abandon Pocket, Instapaper and other Readability service : adopt poche. It is the same, but it is open source. Moreover, you can migrate from Pocket & Readability.
3
4![poche](http://inthepoche.com/img/logo.png)
5
6The website of poche is [inthepoche.com](http://inthepoche.com).
7
8To test poche, a demo website is online : [demo.inthepoche.com](http://demo.inthepoche.com) (login poche, password poche).
9
10To get news from poche, [follow us on twitter](http://twitter.com/getpoche) or [read the poche blog](http://inthepoche.com/blog). A Google Group is also available : [poche-users](https://groups.google.com/forum/#!forum/poche-users).
11
12[![flattr](http://api.flattr.com/button/flattr-badge-large.png)](http://flattr.com/thing/1265480/poche-a-read-it-later-open-source-system)
13
14## Installation
15
16Read the INSTALL.md file.
17
18## Security
19You **have** to protect your db/poche.sqlite file. Modify the virtual host of your website to add this condition :
20```apache
21<Files ~ "\.sqlite$">
22 Order allow,deny
23 Deny from all
24</Files>
25```
26
27Nginx version:
28```nginx
29location ~ /(db) {
30 deny all;
31 return 404;
32}
33```
34
35## Usage
36See the documentation on our website : [inthepoche.com](http://inthepoche.com).
37
38## Travis
39[![Build Status](https://api.travis-ci.org/inthepoche/poche.png?branch=dev)](http://travis-ci.org/#!/inthepoche/poche)
40
41## License
42Copyright © 2010-2013 Nicolas Lœuillet <nicolas.loeuillet@gmail.com>
43This work is free. You can redistribute it and/or modify it under the
44terms of the Do What The Fuck You Want To Public License, Version 2,
45as published by Sam Hocevar. See the COPYING file for more details.