aboutsummaryrefslogtreecommitdiffhomepage
path: root/inc/poche/config.inc.default.php
diff options
context:
space:
mode:
authorNicolas Lœuillet <nicolas@loeuillet.org>2014-05-29 18:54:06 +0200
committerNicolas Lœuillet <nicolas@loeuillet.org>2014-05-29 18:54:06 +0200
commita9f5e572dde4f986a498d2fbe92a38a1b22f9595 (patch)
tree80b5bfc9836ae92cc4929a4d72ae0b2730e568bc /inc/poche/config.inc.default.php
parent96834a47b09985e1c82b82857fc108f20e8b8f2b (diff)
parent8038b38802769031e050c753fc0a388a2276629e (diff)
downloadwallabag-a9f5e572dde4f986a498d2fbe92a38a1b22f9595.tar.gz
wallabag-a9f5e572dde4f986a498d2fbe92a38a1b22f9595.tar.zst
wallabag-a9f5e572dde4f986a498d2fbe92a38a1b22f9595.zip
Merge pull request #712 from wallabag/dev1.7.0
1.7, call me "Premium version"
Diffstat (limited to 'inc/poche/config.inc.default.php')
-rwxr-xr-xinc/poche/config.inc.default.php64
1 files changed, 64 insertions, 0 deletions
diff --git a/inc/poche/config.inc.default.php b/inc/poche/config.inc.default.php
new file mode 100755
index 00000000..ffcd205d
--- /dev/null
+++ b/inc/poche/config.inc.default.php
@@ -0,0 +1,64 @@
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://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// 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@define ('DOWNLOAD_PICTURES', FALSE); # This can slow down the process of adding articles
34@define ('REGENERATE_PICTURES_QUALITY', 75);
35@define ('CONVERT_LINKS_FOOTNOTES', FALSE);
36@define ('REVERT_FORCED_PARAGRAPH_ELEMENTS', FALSE);
37@define ('SHARE_TWITTER', TRUE);
38@define ('SHARE_MAIL', TRUE);
39@define ('SHARE_SHAARLI', FALSE);
40@define ('SHAARLI_URL', 'http://myshaarliurl.com');
41@define ('FLATTR', TRUE);
42@define ('FLATTR_API', 'https://api.flattr.com/rest/v2/things/lookup/?url=');
43@define ('NOT_FLATTRABLE', '0');
44@define ('FLATTRABLE', '1');
45@define ('FLATTRED', '2');
46// display or not print link in article view
47@define ('SHOW_PRINTLINK', '1');
48// display or not percent of read in article view. Affects only default theme.
49@define ('SHOW_READPERCENT', '1');
50@define ('ABS_PATH', 'assets/');
51
52@define ('DEFAULT_THEME', 'baggy');
53
54@define ('THEME', ROOT . '/themes');
55@define ('LOCALE', ROOT . '/locale');
56@define ('CACHE', ROOT . '/cache');
57
58@define ('PAGINATION', '10');
59
60//limit for download of articles during import
61@define ('IMPORT_LIMIT', 5);
62//delay between downloads (in sec)
63@define ('IMPORT_DELAY', 5);
64