From 6c711f696f73bc59813f6834ec241aef3b626cbd Mon Sep 17 00:00:00 2001 From: Frederic Guillot Date: Sat, 29 Aug 2015 20:00:53 -0400 Subject: Include documentation in the application --- doc/postgresql-configuration.markdown | 40 +++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 doc/postgresql-configuration.markdown (limited to 'doc/postgresql-configuration.markdown') diff --git a/doc/postgresql-configuration.markdown b/doc/postgresql-configuration.markdown new file mode 100644 index 00000000..3c07ff16 --- /dev/null +++ b/doc/postgresql-configuration.markdown @@ -0,0 +1,40 @@ +Postgresql configuration +======================== + +By default, Kanboard use Sqlite to store its data but it's also possible to use Postgresql. + +Requirements +------------ + +- A Postgresql server already installed and configured +- The PHP extension `pdo_pgsql` installed (Debian/Ubuntu: `apt-get install php5-pgsql`) + +Note: Kanboard is tested with **Postgresql 9.3 and 9.4** + +Configuration +------------- + +### Create an empty database with the command `pgsql`: + +```sql +CREATE DATABASE kanboard; +``` + +### Create a config file + +The file `config.php` should contains those values: + +```php +