summaryrefslogtreecommitdiff
path: root/htdocs/src/config.inc.php
blob: 1ca6808edc68910cdca97e1130958ccf9a31d946 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php

/* Foursquare Community Site
 * 
 * Copyright (C) 2011 Foursquare Church.
 * 
 * Developers: Jesse Morgan <jmorgan@foursquarestaff.com>
 *
 */

$CONFIG = array(
    // Database Information
    'dbhost' => '127.0.0.1',
    'dbuser' => 'p4scommunity',
    'dbpass' => 'password',
    'dbname' => 'p4scommunity',

    // Site Information
    'sitetitle' => 'Foursquare Community',
    'urlroot'   => 'http://localhost/~jesse/p4s/community/htdocs',
    
    'root'      => '/Users/jesse/Development/P4Square/community/htdocs',

    'debug'     => true,
);

set_include_path(get_include_path() . PATH_SEPARATOR . $CONFIG['root'].'/src');

?>