root/apps/notifier/conf/database.php

Revision 835 (checked in by goldoraf, 2 years ago)

Added skeleton of notifier demo app

Line 
1 <?php
2
3 $config = array
4 (
5     'development' => array
6     (
7         'adapter' => 'MySql',
8         'host'    => 'localhost',
9         'user'    => 'notifier',
10         'pass'    => '',
11         'dbname'  => 'notifier'
12     ),
13     'production' => array
14     (
15         'adapter' => 'MySql',
16         'host'    => 'localhost',
17         'user'    => 'notifier',
18         'pass'    => '',
19         'dbname'  => 'notifier'
20     ),
21     'test' => array
22     (
23         'driver'  => 'MySql',
24         'host'    => 'localhost',
25         'user'    => 'notifier',
26         'pass'    => '',
27         'dbname'  => 'notifier'
28     )
29 );
30
31 return $config;
32
33 ?>
34
Note: See TracBrowser for help on using the browser.