From 035294798d891d1d2447a79586401b097d0c2ae4 Mon Sep 17 00:00:00 2001 From: Frédéric Guillot Date: Sat, 5 Jul 2014 16:32:24 -0300 Subject: Add Postgresql support --- docs/postgresql-configuration.markdown | 38 ++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 docs/postgresql-configuration.markdown (limited to 'docs/postgresql-configuration.markdown') diff --git a/docs/postgresql-configuration.markdown b/docs/postgresql-configuration.markdown new file mode 100644 index 00000000..04c6c2e7 --- /dev/null +++ b/docs/postgresql-configuration.markdown @@ -0,0 +1,38 @@ +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`) + +Configuration +------------- + +### Create an empty database with the command `pgsql`: + +```sql +CREATE DATABASE kanboard; +``` + +### Create a config file + +Inside our config file write those lines: + +```php +