]> git.immae.eu Git - github/wallabag/wallabag.git/blob - inc/poche/config.inc.php.new
change import files constants
[github/wallabag/wallabag.git] / inc / poche / config.inc.php.new
1 <?php
2 /**
3 * poche, a read it later open source system
4 *
5 * @category poche
6 * @author Nicolas LÅ“uillet <support@inthepoche.com>
7 * @copyright 2013
8 * @license http://www.wtfpl.net/ see COPYING file
9 */
10
11 define ('SALT', ''); # put a strong string here
12 define ('LANG', 'en_EN.utf8');
13
14 define ('STORAGE', 'sqlite'); # postgres, mysql or sqlite
15
16 define ('STORAGE_SQLITE', ROOT . '/db/poche.sqlite'); # if you are using sqlite, where the database file is located
17
18 # only for postgres & mysql
19 define ('STORAGE_SERVER', 'localhost');
20 define ('STORAGE_DB', 'poche');
21 define ('STORAGE_USER', 'poche');
22 define ('STORAGE_PASSWORD', 'poche');
23
24 #################################################################################
25 # Do not trespass unless you know what you are doing
26 #################################################################################
27
28 define ('MODE_DEMO', FALSE);
29 define ('DEBUG_POCHE', FALSE);
30 define ('DOWNLOAD_PICTURES', FALSE);
31 define ('CONVERT_LINKS_FOOTNOTES', FALSE);
32 define ('REVERT_FORCED_PARAGRAPH_ELEMENTS', FALSE);
33 define ('SHARE_TWITTER', TRUE);
34 define ('SHARE_MAIL', TRUE);
35 define ('SHARE_SHAARLI', FALSE);
36 define ('SHAARLI_URL', 'http://myshaarliurl.com');
37 define ('FLATTR', TRUE);
38 define ('FLATTR_API', 'https://api.flattr.com/rest/v2/things/lookup/?url=');
39 define ('NOT_FLATTRABLE', '0');
40 define ('FLATTRABLE', '1');
41 define ('FLATTRED', '2');
42 define ('ABS_PATH', 'assets/');
43
44 define ('DEFAULT_THEME', 'default');
45
46 define ('THEME', ROOT . '/themes');
47 define ('LOCALE', ROOT . '/locale');
48 define ('CACHE', ROOT . '/cache');
49
50 define ('PAGINATION', '10');
51
52 define ('POCHE_VERSION', '1.0-beta5');
53
54 define ('POCKET_FILE', '/ril_export.html');
55 define ('READABILITY_FILE', '/readability');
56 define ('INSTAPAPER_FILE', '/instapaper-export.html');
57
58 define ('IMPORT_POCKET_FILE', ROOT . POCKET_FILE);
59 define ('IMPORT_READABILITY_FILE', ROOT . READABILITY_FILE);
60 define ('IMPORT_INSTAPAPER_FILE', ROOT . INSTAPAPER_FILE);