diff options
author | Nicolas Lœuillet <nicolas@loeuillet.org> | 2014-04-22 21:44:12 +0200 |
---|---|---|
committer | Nicolas Lœuillet <nicolas@loeuillet.org> | 2014-04-22 21:44:12 +0200 |
commit | 2a6440c134ee2d90a84b3e3a2e039d8fb4d83d04 (patch) | |
tree | c05cd0005f2a1a603ad2f6fddf61ab57a99aeb4e | |
parent | 29cf52b677ffb39aff8b798ac668092c1dc021e4 (diff) | |
parent | 4dbba60439c0e6164fcdce0c25b31409a7c509e3 (diff) | |
download | wallabag-2a6440c134ee2d90a84b3e3a2e039d8fb4d83d04.tar.gz wallabag-2a6440c134ee2d90a84b3e3a2e039d8fb4d83d04.tar.zst wallabag-2a6440c134ee2d90a84b3e3a2e039d8fb4d83d04.zip |
Merge pull request #659 from mariroz/dev
last error: config.inc.default.php missed
-rwxr-xr-x | inc/poche/config.inc.default.php | 63 |
1 files changed, 63 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..3b08c212 --- /dev/null +++ b/inc/poche/config.inc.default.php | |||
@@ -0,0 +1,63 @@ | |||
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); | ||
34 | define ('CONVERT_LINKS_FOOTNOTES', FALSE); | ||
35 | define ('REVERT_FORCED_PARAGRAPH_ELEMENTS', FALSE); | ||
36 | define ('SHARE_TWITTER', TRUE); | ||
37 | define ('SHARE_MAIL', TRUE); | ||
38 | define ('SHARE_SHAARLI', FALSE); | ||
39 | define ('SHAARLI_URL', 'http://myshaarliurl.com'); | ||
40 | define ('FLATTR', TRUE); | ||
41 | define ('FLATTR_API', 'https://api.flattr.com/rest/v2/things/lookup/?url='); | ||
42 | define ('NOT_FLATTRABLE', '0'); | ||
43 | define ('FLATTRABLE', '1'); | ||
44 | define ('FLATTRED', '2'); | ||
45 | // display or not print link in article view | ||
46 | define ('SHOW_PRINTLINK', '1'); | ||
47 | // display or not percent of read in article view. Affects only default theme. | ||
48 | define ('SHOW_READPERCENT', '1'); | ||
49 | define ('ABS_PATH', 'assets/'); | ||
50 | |||
51 | define ('DEFAULT_THEME', 'baggy'); | ||
52 | |||
53 | define ('THEME', ROOT . '/themes'); | ||
54 | define ('LOCALE', ROOT . '/locale'); | ||
55 | define ('CACHE', ROOT . '/cache'); | ||
56 | |||
57 | define ('PAGINATION', '10'); | ||
58 | |||
59 | //limit for download of articles during import | ||
60 | define ('IMPORT_LIMIT', 5); | ||
61 | //delay between downloads (in sec) | ||
62 | define ('IMPORT_DELAY', 5); | ||
63 | |||