-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
More stuff for Travis and Continuous Integration
- Loading branch information
David Kobia
committed
Oct 2, 2013
1 parent
0c60689
commit 05c671a
Showing
4 changed files
with
64 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?php defined('SYSPATH') or die('No direct access allowed.'); | ||
|
||
return array( | ||
|
||
'driver' => 'ORM', | ||
'hash_method' => 'sha256', | ||
'hash_key' => 'somereallylongkey', | ||
'lifetime' => 1209600, | ||
'session_type' => Session::$default, | ||
'session_key' => 'auth_user', | ||
|
||
// Username/password combinations for the Auth File driver | ||
'users' => array( | ||
// 'admin' => 'b3154acf3a344170077d11bdb5fff31532f679a1919e716a02', | ||
'admin' => '' | ||
), | ||
|
||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?php defined('SYSPATH') or die('No direct access allowed.'); | ||
|
||
/** | ||
* Database Config | ||
* | ||
* @author Ushahidi Team <[email protected]> | ||
* @package Ushahidi\Application | ||
* @copyright Ushahidi - http://www.ushahidi.com | ||
* @license http://www.gnu.org/copyleft/gpl.html GNU General Public License Version 3 (GPLv3) | ||
*/ | ||
|
||
return array | ||
( | ||
'default' => array | ||
( | ||
'type' => 'MySQL', | ||
'connection' => array( | ||
'hostname' => 'localhost', | ||
'database' => 'pingapp_test', | ||
'username' => 'root', | ||
'password' => '', | ||
'persistent' => FALSE, | ||
), | ||
'table_prefix' => '', | ||
'charset' => 'utf8', | ||
'caching' => TRUE, | ||
'profiling' => TRUE, | ||
) | ||
); |