From 04bebc47877f5145e20e6d6165ea506fa891f98c Mon Sep 17 00:00:00 2001 From: Frédéric Guillot Date: Mon, 18 Aug 2014 18:08:51 -0700 Subject: Add doc for board configuration --- README.markdown | 1 + docs/board-configuration.markdown | 30 ++++++++++++++++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 docs/board-configuration.markdown diff --git a/README.markdown b/README.markdown index 9713edb3..2731b8a3 100644 --- a/README.markdown +++ b/README.markdown @@ -79,6 +79,7 @@ Documentation #### Developers and sysadmins +- [Board configuration](docs/board-configuration.markdown) - [Email configuration](docs/email-configuration.markdown) - [Command line interface](docs/cli.markdown) - [Json-RPC API](docs/api-json-rpc.markdown) diff --git a/docs/board-configuration.markdown b/docs/board-configuration.markdown new file mode 100644 index 00000000..cc597982 --- /dev/null +++ b/docs/board-configuration.markdown @@ -0,0 +1,30 @@ +Board configuration +=================== + +Some parameters for the boards can be changed with a config file. + +Default values are available in the file `config.default.php`. +If you want to override the default values, you have to create a config file `config.php` in the root directory of your Kanboard installation. + +### Auto-refresh frequency for the public board view + +```php +// Auto-refresh frequency in seconds for the public board view (60 seconds by default) +define('BOARD_PUBLIC_CHECK_INTERVAL', 60); +``` + +### Auto-refresh frequency for the board (Ajax polling) + +```php +// Board refresh frequency in seconds (the value 0 disable this feature, 10 seconds by default) +define('BOARD_CHECK_INTERVAL', 10); +``` + +### Task highlighting + +Display a shadow around the task when a task was moved recently. Set the value 0 to disable this feature. + +```php +// Period (in seconds) to consider a task was modified recently (0 to disable, 2 days by default) +define('RECENT_TASK_PERIOD', 48*60*60); +``` -- cgit v1.2.3