blob: 211a798feb5c8e76dcfbda7cb9c30ea87522b9a1 (
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
30
31
|
<?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',
'email_from' => 'community@myfoursquarechurch.com',
'urlroot' => 'http://localhost/~jesse/p4s/community/htdocs',
'root' => '/home/jesse/Development/p4square/community/htdocs',
'debug' => true,
'production' => false,
);
set_include_path(get_include_path() . PATH_SEPARATOR . $CONFIG['root'].'/src');
?>
|