From 0371acff89b14b9bdcb03e72fd9637e26e6b517c Mon Sep 17 00:00:00 2001 From: Frederic Guillot Date: Sun, 29 Jan 2017 11:07:42 -0500 Subject: Move English documentation to folder en_US --- doc/en_US/mysql-configuration.markdown | 72 ++++++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 doc/en_US/mysql-configuration.markdown (limited to 'doc/en_US/mysql-configuration.markdown') diff --git a/doc/en_US/mysql-configuration.markdown b/doc/en_US/mysql-configuration.markdown new file mode 100644 index 00000000..c199353e --- /dev/null +++ b/doc/en_US/mysql-configuration.markdown @@ -0,0 +1,72 @@ +MySQL/MariaDB Configuration +=========================== + +By default Kanboard use Sqlite to stores its data. +However it's possible to use MySQL or MariaDB instead of Sqlite. + +Requirements +------------ + +- MySQL server +- The PHP extension `pdo_mysql` installed + +Note: Kanboard is tested with **MySQL >= 5.5 and MariaDB >= 10.0** + +MySQL configuration +------------------- + +### Create a database + +The first step is to create a database on your MySQL server. +By example, you can do that with the command line mysql client: + +```sql +CREATE DATABASE kanboard; +``` + +### Create a config file + +The file `config.php` should contains those values: + +```php +