Config files

This commit is contained in:
2021-03-25 21:11:03 -03:00
parent 90754413a0
commit 078c4503a8
4 changed files with 48 additions and 0 deletions

17
config/databases.php Normal file
View File

@ -0,0 +1,17 @@
<?php
return [
'mysql' => [
'host' => 'db',
//'port' => 3306,
'database' => 'incoviba',
'username' => 'incoviba',
'password' => '5GQYFvRjVw2A4KcD'
],
'mysql_copy' => [
'host' => 'localhost',
'database' => 'incoviba3',
'username' => 'incoviba',
'password' => '5GQYFvRjVw2A4KcD'
]
]
?>