diff --git a/config/app.php b/config/app.php new file mode 100644 index 0000000..ce713ab --- /dev/null +++ b/config/app.php @@ -0,0 +1,10 @@ + 'America/Santiago', + 'locale' => 'es', + 'database' => 'mysql', + 'debug' => false, + 'benchmark' => false, + 'login_hours' => 5*24 +]; +?> \ No newline at end of file diff --git a/config/databases.php b/config/databases.php new file mode 100644 index 0000000..b74a9b1 --- /dev/null +++ b/config/databases.php @@ -0,0 +1,17 @@ + [ + 'host' => 'db', + //'port' => 3306, + 'database' => 'incoviba', + 'username' => 'incoviba', + 'password' => '5GQYFvRjVw2A4KcD' + ], + 'mysql_copy' => [ + 'host' => 'localhost', + 'database' => 'incoviba3', + 'username' => 'incoviba', + 'password' => '5GQYFvRjVw2A4KcD' + ] +] +?> diff --git a/config/incoviba.php b/config/incoviba.php new file mode 100644 index 0000000..d21d9e8 --- /dev/null +++ b/config/incoviba.php @@ -0,0 +1,6 @@ + [ + 'caducidad' => 30 + ] +]; diff --git a/config/locations.php b/config/locations.php new file mode 100644 index 0000000..49f1082 --- /dev/null +++ b/config/locations.php @@ -0,0 +1,15 @@ + 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' +]; +?>