<?php
/**
 * This configures the access to a postgres database. The user needs to have permissions
 * to create and drop databases.
 */
$conf['host'] = 'localhost';
$conf['port'] = 5432;
$conf['user'] = 'postgres';
$conf['pass'] = '';
