You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

17 lines
310 B

<?php
/**
* Configure of production
*/
$capsule->addConnection(array(
'driver' => 'mysql',
'host' => getenv('IP'),
'port' => 3306,
'database' => 'c9',
'username' => getenv('C9_USER'),
'password' => '',
'prefix' => '',
'charset' => "utf8",
'collation' => "utf8_unicode_ci"
));