forked from devaneando/Wikitten
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.php.example
More file actions
34 lines (24 loc) · 854 Bytes
/
config.php.example
File metadata and controls
34 lines (24 loc) · 854 Bytes
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
<?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');
// Custom path to your wiki's library:
// define('LIBRARY', '/path/to/wiki/library');
// Enable editing files through the interface?
// define('ENABLE_EDITING', true);
// Enable create file if not exists
// define('ENABLE_CREATING', true);
// Enable regarding file without extension as markdown?
// define('MAKE_MARKDOWN_DEFAULT', true);
// Enable JSON page data?
// define('USE_PAGE_METADATA', true);
// Enable Wikitten Logo?
// define('USE_WIKITTEN_LOGO', true);
// Enable PasteBin plugin ?
// define('ENABLE_PASTEBIN', true);
// define('PASTEBIN_API_KEY', '');
// Enable Authentication?
// define('ENABLE_AUTH', true);
// define('USER', 'admin');
// define('PASSWORD', 'password');