1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-08-01 17:38:38 +00:00

setup of storage

This commit is contained in:
Nicolas Lœuillet 2013-08-07 14:38:58 +02:00
parent bc1ee8524e
commit 68857cea8c
2 changed files with 25 additions and 17 deletions

View file

@ -8,6 +8,14 @@
* @license http://www.wtfpl.net/ see COPYING file
*/
# storage
define ('STORAGE','postgres'); # postgres, mysql, sqlite
define ('STORAGE_SERVER', 'localhost'); # leave blank for sqlite
define ('STORAGE_DB', 'poche'); # only for postgres & mysql
define ('STORAGE_SQLITE', './db/poche.sqlite');
define ('STORAGE_USER', 'postgres'); # leave blank for sqlite
define ('STORAGE_PASSWORD', 'postgres'); # leave blank for sqlite
define ('POCHE_VERSION', '1.0-beta');
define ('MODE_DEMO', FALSE);
define ('DEBUG_POCHE', TRUE);
@ -24,7 +32,6 @@ define ('CACHE', './cache');
define ('LANG', 'en_EN.UTF8');
define ('PAGINATION', '10');
define ('THEME', 'light');
define ('STORAGE','postgres'); # postgres, mysql, sqlite
# /!\ Be careful if you change the lines below /!\
require_once './inc/poche/User.class.php';