-
-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathsample.config.inc.php
34 lines (33 loc) · 925 Bytes
/
sample.config.inc.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
/**
* Configuration
*
* @package WikiDocs
* @repository https://github.com/Zavy86/WikiDocs
*/
// Enable debug
define('DEBUGGABLE',false);
// Localization [ en, de, es, fa, fr, it, nl, pt, ru, zh-hans, zh-hant ]
define('LANG',"en");
// Application title
define('PATH',"/");
// Application title
define('TITLE',"Wiki|Docs");
// Application subtitle
define('SUBTITLE',"flat-file markdown wiki engine");
// Contents owner
define('OWNER',"Owner");
// Contents credits notice
define('NOTICE',"Credits");
// Privacy banner for GDPR-compliant
define('PRIVACY',null);
// Hashed password for editing (default:password)
define('EDITCODE',"\$2y\$10\$r6OE5vLrPtnjvLZ2l8vFnO9JySb5TlwWLWZE6xTvWB9h8tUdVSsvK");
// Hashed encoded password for reading (set null for public wiki)
define('VIEWCODE',null);
// Main theme color
define('COLOR',"#4CAF50");
// Dark mode
define('DARK',false);
// Google Analytics Tag
define('GTAG',null);