]> git.immae.eu Git - github/wallabag/wallabag.git/blame - inc/poche/define.inc.php
Merge branch 'Flattr' of git://github.com/tcitworld/poche into tcitworld-Flattr
[github/wallabag/wallabag.git] / inc / poche / define.inc.php
CommitLineData
bb5a7d9e
NL
1<?php
2/**
3 * poche, a read it later open source system
4 *
5 * @category poche
3c33e40b 6 * @author Nicolas Lœuillet <support@inthepoche.com>
bb5a7d9e
NL
7 * @copyright 2013
8 * @license http://www.wtfpl.net/ see COPYING file
9 */
10
11define ('STORAGE','sqlite'); # postgres, mysql, sqlite
12define ('STORAGE_SERVER', 'localhost'); # leave blank for sqlite
13define ('STORAGE_DB', 'poche'); # only for postgres & mysql
14define ('STORAGE_SQLITE', __DIR__ . '/../../db/poche.sqlite');
15define ('STORAGE_USER', 'postgres'); # leave blank for sqlite
16define ('STORAGE_PASSWORD', 'postgres'); # leave blank for sqlite
17
18define ('MODE_DEMO', FALSE);
19define ('DEBUG_POCHE', FALSE);
bb5a7d9e
NL
20define ('DOWNLOAD_PICTURES', FALSE);
21define ('SHARE_TWITTER', TRUE);
22define ('SHARE_MAIL', TRUE);
1e0f9166 23define ('SHARE_SHAARLI', FALSE);
746f93c2 24define ('SHAARLI_URL', 'http://myshaarliurl.com');
964481d0 25define ('FLATTR', TRUE);
12d9cfbc
NL
26define ('FLATTR_API', 'https://api.flattr.com/rest/v2/things/lookup/?url=');
27define ('NOT_FLATTRABLE', '0');
28define ('FLATTRABLE', '1');
29define ('FLATTRED', '2');
bb5a7d9e
NL
30define ('ABS_PATH', 'assets/');
31define ('TPL', __DIR__ . '/../../tpl');
32define ('LOCALE', __DIR__ . '/../../locale');
33define ('CACHE', __DIR__ . '/../../cache');
34define ('PAGINATION', '10');
66b6a3b5
E
35define ('THEME', 'light');
36
37define ('IMPORT_POCKET_FILE', './ril_export.html');
38define ('IMPORT_READABILITY_FILE', './readability');
39define ('IMPORT_INSTAPAPER_FILE', './instapaper-export.html');