24 lines
973 B
PHP
24 lines
973 B
PHP
|
<?php
|
||
|
if(!defined('CONFIG_INC'))
|
||
|
{
|
||
|
define('CONFIG_INC',1);
|
||
|
|
||
|
// PostgreSQL Database Setup
|
||
|
$DatabaseServer = getenv('ROSARIODB_PORT_5432_TCP_ADDR');
|
||
|
$DatabaseUsername = 'postgres';
|
||
|
// $DatabasePassword = '';
|
||
|
$DatabaseName = 'rosariosis';
|
||
|
$DatabasePort = getenv('ROSARIODB_PORT_5432_TCP_PORT');
|
||
|
|
||
|
// Server Names and Paths
|
||
|
$RosarioPath = dirname(__FILE__).'/';
|
||
|
$pg_dumpPath = '/usr/bin/pg_dump'; // Specify the path to the database dump utility for this server.
|
||
|
$wkhtmltopdfPath = '/usr/bin/wkhtmltopdf'; // empty string means wkhtmltopdf will not be called and reports will be rendered in html instead of pdf
|
||
|
|
||
|
$DefaultSyear = '2014'; // Default school year, should match the database to be able to login
|
||
|
$RosarioNotifyAddress = ''; // email address to send error and new administrator notifications
|
||
|
$RosarioLocales = array('en_US.utf8'); // Add other languages you want to support here, ex: array('en_US.utf8', 'fr_FR.utf8', 'es_ES.utf8');
|
||
|
|
||
|
}
|
||
|
?>
|