aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas.loeuillet@gmail.com>2013-08-07 19:31:11 +0200
committerNicolas LÅ“uillet <nicolas.loeuillet@gmail.com>2013-08-07 19:31:11 +0200
commit145f50402e8e3f8b0527207538c3f7a483e5a974 (patch)
tree16a13a48de98e065d4a87ee078aeec5b9e60668e
parent1d517de67b4d3de661a288acdfd8eecefd3110a3 (diff)
downloadwallabag-145f50402e8e3f8b0527207538c3f7a483e5a974.tar.gz
wallabag-145f50402e8e3f8b0527207538c3f7a483e5a974.tar.zst
wallabag-145f50402e8e3f8b0527207538c3f7a483e5a974.zip
installation instructions
-rw-r--r--INSTALL.md25
1 files changed, 15 insertions, 10 deletions
diff --git a/INSTALL.md b/INSTALL.md
index bbac44ba..fd34f695 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -19,6 +19,20 @@ poche must have write access on assets, cache and db directories.
19 19
20[PHP cURL](http://www.php.net/manual/en/book.curl.php) & [tidy_parse_string](http://www.php.net/manual/en/tidy.parsestring.php) are recommended. 20[PHP cURL](http://www.php.net/manual/en/book.curl.php) & [tidy_parse_string](http://www.php.net/manual/en/tidy.parsestring.php) are recommended.
21 21
22## twig
23poche now uses twig for templating. You have to install twig.
24
25Install composer in your project :
26```bash
27curl -s http://getcomposer.org/installer | php
28```
29Install via composer :
30```bash
31php composer.phar install
32```
33
34If you don't want to install twig by yourself, you can download [this file](http://static.inthepoche.com/files/poche-1.0-latest-with-twig.zip).
35
22## storage in sqlite 36## storage in sqlite
23You have to install [sqlite for php](http://www.php.net/manual/en/book.sqlite.php) on your server. 37You have to install [sqlite for php](http://www.php.net/manual/en/book.sqlite.php) on your server.
24 38
@@ -30,16 +44,7 @@ Execute /install/mysql.sql file in your database.
30## storage in postgres 44## storage in postgres
31Execute /install/postgres.sql file in your database. 45Execute /install/postgres.sql file in your database.
32 46
33Install composer in your project : 47## upgrading from poche <= 0.3
34```bash
35curl -s http://getcomposer.org/installer | php
36```
37Install via composer :
38```bash
39php composer.phar install
40```
41
42## updating from poche 0.3
43With poche <= 0.3, all your datas were stored in a sqlite file. The structure of this file changed. 48With poche <= 0.3, all your datas were stored in a sqlite file. The structure of this file changed.
44 49
45You have to execute http://yourpoche/install/update_sqlite_from_0_to_1.php before using this new version. 50You have to execute http://yourpoche/install/update_sqlite_from_0_to_1.php before using this new version.