]> git.immae.eu Git - github/wallabag/wallabag.git/blob - inc/poche/define.inc.php
Fix issue on entries' height
[github/wallabag/wallabag.git] / inc / poche / define.inc.php
1 <?php
2 /**
3 * poche, a read it later open source system
4 *
5 * @category poche
6 * @author Nicolas LÅ“uillet <nicolas@loeuillet.org>
7 * @copyright 2013
8 * @license http://www.wtfpl.net/ see COPYING file
9 */
10
11 define ('STORAGE','sqlite'); # postgres, mysql, sqlite
12 define ('STORAGE_SERVER', 'localhost'); # leave blank for sqlite
13 define ('STORAGE_DB', 'poche'); # only for postgres & mysql
14 define ('STORAGE_SQLITE', __DIR__ . '/../../db/poche.sqlite');
15 define ('STORAGE_USER', 'postgres'); # leave blank for sqlite
16 define ('STORAGE_PASSWORD', 'postgres'); # leave blank for sqlite
17
18 define ('MODE_DEMO', FALSE);
19 define ('DEBUG_POCHE', FALSE);
20 define ('CONVERT_LINKS_FOOTNOTES', FALSE);
21 define ('REVERT_FORCED_PARAGRAPH_ELEMENTS', FALSE);
22 define ('DOWNLOAD_PICTURES', FALSE);
23 define ('SHARE_TWITTER', TRUE);
24 define ('SHARE_MAIL', TRUE);
25 define ('SHARE_SHAARLI', FALSE);
26 define ('SHAARLI_URL', 'http://myshaarliurl.com');
27 define ('ABS_PATH', 'assets/');
28 define ('TPL', __DIR__ . '/../../tpl');
29 define ('LOCALE', __DIR__ . '/../../locale');
30 define ('CACHE', __DIR__ . '/../../cache');
31 define ('PAGINATION', '10');
32 define ('THEME', 'light');