<?php
error_reporting(0);
ini_set('display_errors', false);

//Database settings
$DB_HOST = "localhost";
$DB_NAME = "call_tracking_db";
$DB_USER = "root";
$DB_PASS = "password";

// company name / branding Default: ""
$SITE_NAME = "";

// Disable Recordings (Set to false to disable) Default: true
$RECORDINGS = true;

// Timezone setting list: http://php.net/manual/en/timezones.php
$TIMEZONE = "America/New_York";

// From Twilio - REQUIRED! http://www.twilio.com/
$AccountSid = "";
$AuthToken = "";

$AccountSid = trim($AccountSid);
$AuthToken = trim($AuthToken);

// Set this to your Yahoo API key. Default: [NOKEY]
$yahoo_geo_api_key = "[NOKEY]";

// DO NOT MODIFY
date_default_timezone_set('UTC');

?>