-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathconfig.php
30 lines (22 loc) · 835 Bytes
/
config.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
<?php
// Example configuration file for Wikitten. To use it,
// first rename it to `config.php`.
// Custom name for your wiki:
define('APP_NAME', 'My Wiki');
// Set the filename of the automatic homepage here
define('DEFAULT_FILE', 'index.md');
// Custom path to your wiki's library:
// define('LIBRARY', '/path/to/wiki/library');
// Enable editing files through the interface?
// NOTE: There's currently no authentication built into Wikitten, controlling
// who does what is your responsibility.
// define('ENABLE_EDITING', true);
// Enable JSON page data?
define('USE_PAGE_METADATA', true);
// Enable the dark theme here
// define('USE_DARK_THEME', true);
// Disable the Wikitten logo here
define('USE_WIKITTEN_LOGO', false);
// Enable PasteBin plugin ?
// define('ENABLE_PASTEBIN', true);
// define('PASTEBIN_API_KEY', '');