summaryrefslogtreecommitdiff
path: root/htdocs/src/config.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'htdocs/src/config.inc.php')
-rw-r--r--htdocs/src/config.inc.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/htdocs/src/config.inc.php b/htdocs/src/config.inc.php
index e93eb43..1ca6808 100644
--- a/htdocs/src/config.inc.php
+++ b/htdocs/src/config.inc.php
@@ -12,14 +12,18 @@ $CONFIG = array(
// Database Information
'dbhost' => '127.0.0.1',
'dbuser' => 'p4scommunity',
- 'dbpass' => '',
+ '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');
+
?>