Config files
This commit is contained in:
10
config/app.php
Normal file
10
config/app.php
Normal 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
17
config/databases.php
Normal 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
6
config/incoviba.php
Normal file
@ -0,0 +1,6 @@
|
||||
<?php
|
||||
return [
|
||||
'cierres' => [
|
||||
'caducidad' => 30
|
||||
]
|
||||
];
|
15
config/locations.php
Normal file
15
config/locations.php
Normal 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'
|
||||
];
|
||||
?>
|
Reference in New Issue
Block a user