Initial import of old legacy Zynapse Framework,

untouched since early 2008.
This commit is contained in:
2010-02-25 00:16:53 +02:00
commit 45aceab6b5
100 changed files with 7685 additions and 0 deletions

40
config/database.php Normal file
View File

@@ -0,0 +1,40 @@
<?php
/*
Database configuration
- only mysql is supported at this time
*/
$database_settings = array(
// database settings for development environment
'development' => array(
'host' => 'localhost',
'database' => 'zynapse_development',
'username' => 'devuser',
'password' => 'devpass',
'persistent' => true,
'table_prefix' => '',
),
// database settings for testing environment
'test' => array(
'use' => 'development',
),
// database settings for production environment
'production' => array(
'host' => 'localhost',
'database' => 'database_name',
'username' => 'user',
'password' => 'password',
'persistent' => true,
'table_prefix' => '',
),
);
?>