diff options
author | Jesse Morgan <jesse@jesterpm.net> | 2011-06-01 10:33:34 -0700 |
---|---|---|
committer | Jesse Morgan <jesse@jesterpm.net ; true> | 2011-06-01 10:33:34 -0700 |
commit | a070cbe9627fcc29ef2f91b8f7578080203e6ad1 (patch) | |
tree | 8b2ddeda3d84e4d67eaae64510dd30192e22e7ac /htdocs/src/config.inc.php | |
parent | b2a7cfb9b152dcad1333b92dde76af3a164af8f6 (diff) |
Removing the config file from the codebase.
Diffstat (limited to 'htdocs/src/config.inc.php')
-rw-r--r-- | htdocs/src/config.inc.php | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/htdocs/src/config.inc.php b/htdocs/src/config.inc.php deleted file mode 100644 index 829c632..0000000 --- a/htdocs/src/config.inc.php +++ /dev/null @@ -1,32 +0,0 @@ -<?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' => '/~jesse/p4s/community/htdocs', - 'root' => '/home/jesse/Development/p4square/community/htdocs', - 'uploads' => '/home/jesse/Development/p4square/community/uploads', - - 'debug' => true, - 'production' => true, -); - -set_include_path(get_include_path() . PATH_SEPARATOR . $CONFIG['root'].'/src'); - -?> |