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/mysql-configuration.markdown | 72 ---------------------------------------- 1 file changed, 72 deletions(-) delete mode 100644 doc/mysql-configuration.markdown (limited to 'doc/mysql-configuration.markdown') diff --git a/doc/mysql-configuration.markdown b/doc/mysql-configuration.markdown deleted file mode 100644 index c199353e..00000000 --- a/doc/mysql-configuration.markdown +++ /dev/null @@ -1,72 +0,0 @@ -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 -