diff options
Diffstat (limited to 'htdocs/src/config.inc.php.example')
-rw-r--r-- | htdocs/src/config.inc.php.example | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/htdocs/src/config.inc.php.example b/htdocs/src/config.inc.php.example new file mode 100644 index 0000000..d0d912c --- /dev/null +++ b/htdocs/src/config.inc.php.example @@ -0,0 +1,35 @@ +<?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', + 'emaildomain' => 'listandshare.com', + + 'urlroot' => '/~jesse/p4s/community/htdocs', + 'root' => '/Users/jesse/Development/P4Square/community/htdocs', + 'uploads' => '/Users/jesse/Development/P4Square/community/uploads', + + 'expiretime' => 7, // days + + 'debug' => true, + 'production' => false, +); + +set_include_path(get_include_path() . PATH_SEPARATOR . $CONFIG['root'].'/src'); + +?> |