]> git.immae.eu Git - github/wallabag/wallabag.git/blob - inc/poche/config.inc.default.php
link to guidelines in contributing file
[github/wallabag/wallabag.git] / inc / poche / config.inc.default.php
1 <?php
2 /**
3 * wallabag, self hostable application allowing you to not miss any content anymore
4 *
5 * @category wallabag
6 * @author Nicolas LÅ“uillet <nicolas@loeuillet.org>
7 * @copyright 2013
8 * @license http://opensource.org/licenses/MIT 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 // Change this if not using the standart port for SSL - i.e you server is behind sslh
29 @define ('SSL_PORT', 443);
30
31 @define ('MODE_DEMO', FALSE);
32 @define ('DEBUG_POCHE', FALSE);
33
34 //default level of error reporting in application. Developers should override it in their config.inc.php: set to E_ALL.
35 @define ('ERROR_REPORTING', E_ALL & ~E_NOTICE);
36
37 @define ('DOWNLOAD_PICTURES', FALSE); # This can slow down the process of adding articles
38 @define ('REGENERATE_PICTURES_QUALITY', 75);
39 @define ('CONVERT_LINKS_FOOTNOTES', FALSE);
40 @define ('REVERT_FORCED_PARAGRAPH_ELEMENTS', FALSE);
41 @define ('SHARE_TWITTER', TRUE);
42 @define ('SHARE_MAIL', TRUE);
43 @define ('SHARE_SHAARLI', FALSE);
44 @define ('SHAARLI_URL', 'http://myshaarliurl.com');
45 @define ('FLATTR', TRUE);
46 @define ('FLATTR_API', 'https://api.flattr.com/rest/v2/things/lookup/?url=');
47 @define ('NOT_FLATTRABLE', '0');
48 @define ('FLATTRABLE', '1');
49 @define ('FLATTRED', '2');
50 // display or not print link in article view
51 @define ('SHOW_PRINTLINK', '1');
52 // display or not percent of read in article view. Affects only default theme.
53 @define ('SHOW_READPERCENT', '1');
54 @define ('ABS_PATH', 'assets/');
55
56 @define ('DEFAULT_THEME', 'baggy');
57
58 @define ('THEME', ROOT . '/themes');
59 @define ('LOCALE', ROOT . '/locale');
60 @define ('CACHE', ROOT . '/cache');
61
62 @define ('PAGINATION', '10');
63
64 //limit for download of articles during import
65 @define ('IMPORT_LIMIT', 5);
66 //delay between downloads (in sec)
67 @define ('IMPORT_DELAY', 5);
68