mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-12 06:02:39 +01:00
18 lines
303 B
PHP
Executable File
18 lines
303 B
PHP
Executable File
<?php
|
|
|
|
return array(
|
|
|
|
'connections' => array(
|
|
|
|
'mysql' => array(
|
|
'driver' => 'mysql',
|
|
'host' => 'localhost',
|
|
'database' => 'ninja',
|
|
'username' => 'ninja',
|
|
'password' => 'ninja',
|
|
'charset' => 'utf8',
|
|
'collation' => 'utf8_unicode_ci',
|
|
'prefix' => '',
|
|
)
|
|
)
|
|
); |