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

10
config/app.php Normal file
View File

@ -0,0 +1,10 @@
<?php
return [
'timezone' => 'America/Santiago',
'locale' => 'es',
'database' => 'mysql',
'debug' => false,
'benchmark' => false,
'login_hours' => 5*24
];
?>

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'
]
]
?>

6
config/incoviba.php Normal file
View File

@ -0,0 +1,6 @@
<?php
return [
'cierres' => [
'caducidad' => 30
]
];

15
config/locations.php Normal file
View File

@ -0,0 +1,15 @@
<?php
return [
'base' => root(),
'cache' => '{locations.base}/cache',
'public' => '{locations.base}/public',
'resources' => '{locations.base}/resources',
'views' => '{locations.resources}/views',
'src' => '{locations.base}/src',
//'languages' => '{locations.resources}/languages'
'app' => '{locations.base}/app',
'controllers' => '{locations.app}/Controller',
'money' => 'provm.cl/optimus/money',
'api' => '192.168.1.100/intranet/api'
];
?>