Prepare Beta Version

This commit is contained in:
2025-05-29 10:05:27 -06:00
parent a7002701f5
commit ea6b04f3f4
254 changed files with 5653 additions and 6569 deletions

View File

@ -1,5 +1,5 @@
<?php
// Variables
return [
"title" => "Koneko Soluciones Tecnológicas",
"description" => "Koneko Soluciones Tecnológicas ofrece desarrollo de sistemas empresariales, sitios web profesionales, inteligencia artificial, infraestructura y soluciones digitales avanzadas para negocios en México.",
@ -7,4 +7,18 @@ return [
"app_name" => "koneko.mx",
"app_logo" => "../vendor/vuexy-admin/img/logo/koneko-04.png",
"favicon" => "../vendor/vuexy-admin/img/logo/koneko-04.png",
// ================== 📦 CACHE GENERAL ==================
'cache' => [
'enabled' => (bool) env('KONEKO_CACHE_ENABLED', true),
'ttl' => (int) env('KONEKO_CACHE_TTL', 20 * 24 * 60), // 20 días
],
// ================== 📦 CACHE DE COMPONENTE ==================
'core' => [
'cache' => [
'enabled' => (bool) env('KONEKO_CORE_CACHE_ENABLED', true),
'ttl' => (int) env('KONEKO_CORE_CACHE_TTL', 20 * 24 * 60),
],
],
];