Add FileCache driver
This commit is contained in:
@@ -12,6 +12,12 @@ defined('DATA_DIR') or define('DATA_DIR', ROOT_DIR.DIRECTORY_SEPARATOR.'data');
|
||||
// Files directory (attachments)
|
||||
defined('FILES_DIR') or define('FILES_DIR', DATA_DIR.DIRECTORY_SEPARATOR.'files');
|
||||
|
||||
// Available cache drivers are "file" and "memory"
|
||||
defined('CACHE_DRIVER') or define('CACHE_DRIVER', 'memory');
|
||||
|
||||
// Cache folder (file driver)
|
||||
defined('CACHE_DIR') or define('CACHE_DIR', DATA_DIR.DIRECTORY_SEPARATOR.'cache');
|
||||
|
||||
// Plugins settings
|
||||
defined('PLUGINS_DIR') or define('PLUGINS_DIR', ROOT_DIR.DIRECTORY_SEPARATOR.'plugins');
|
||||
defined('PLUGIN_API_URL') or define('PLUGIN_API_URL', 'https://kanboard.net/plugins.json');
|
||||
|
||||
Reference in New Issue
Block a user