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.php25
1 files changed, 25 insertions, 0 deletions
diff --git a/htdocs/src/config.inc.php b/htdocs/src/config.inc.php
index e69de29..e93eb43 100644
--- a/htdocs/src/config.inc.php
+++ b/htdocs/src/config.inc.php
@@ -0,0 +1,25 @@
+<?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' => '',
+ 'dbname' => 'p4scommunity',
+
+ // Site Information
+ 'sitetitle' => 'Foursquare Community',
+ 'urlroot' => 'http://localhost/~jesse/p4s/community/htdocs',
+
+
+);
+
+?>