Rename Wallamonitor to Wallabicher across all files and update related configurations in Docker and documentation. Adjusted service names, container names, and references in scripts and frontend components to reflect the new naming convention.

This commit is contained in:
Omar Sánchez Pizarro
2026-01-19 22:04:25 +01:00
parent 609d9e24e7
commit dc9c9130aa
23 changed files with 198 additions and 150 deletions

View File

@@ -1,26 +1,26 @@
<template>
<div>
<div class="flex justify-between items-center mb-6">
<h1 class="text-3xl font-bold text-gray-900">Logs del Sistema</h1>
<div class="flex items-center space-x-4">
<select v-model="logLevel" @change="loadLogs" class="input" style="width: auto;">
<div class="flex flex-col sm:flex-row sm:justify-between sm:items-center gap-3 sm:gap-4 mb-4 sm:mb-6">
<h1 class="text-2xl sm:text-3xl font-bold text-gray-900">Logs del Sistema</h1>
<div class="flex flex-col sm:flex-row items-stretch sm:items-center gap-2 sm:space-x-4">
<select v-model="logLevel" @change="loadLogs" class="input text-sm sm:text-base" style="width: 100%; min-width: 160px;">
<option value="">Todos los niveles</option>
<option value="INFO">INFO</option>
<option value="WARNING">WARNING</option>
<option value="ERROR">ERROR</option>
<option value="DEBUG">DEBUG</option>
</select>
<button @click="loadLogs" class="btn btn-primary">
<button @click="loadLogs" class="btn btn-primary text-sm sm:text-base whitespace-nowrap">
Actualizar
</button>
<button @click="autoRefresh = !autoRefresh" class="btn btn-secondary">
<button @click="autoRefresh = !autoRefresh" class="btn btn-secondary text-sm sm:text-base whitespace-nowrap">
{{ autoRefresh ? '⏸ Pausar' : '▶ Auto-refresh' }}
</button>
</div>
</div>
<div class="card">
<div class="bg-gray-900 text-green-400 font-mono text-sm p-4 rounded-lg overflow-x-auto max-h-[600px] overflow-y-auto">
<div class="card p-2 sm:p-6">
<div class="bg-gray-900 text-green-400 font-mono text-xs sm:text-sm p-3 sm:p-4 rounded-lg overflow-x-auto max-h-[400px] sm:max-h-[600px] overflow-y-auto">
<div v-if="loading" class="text-center py-8">
<div class="inline-block animate-spin rounded-full h-6 w-6 border-b-2 border-green-400"></div>
<p class="mt-2 text-gray-400">Cargando logs...</p>