rename proyecto a Alpha, refactor imports a components/ui, fix types en stores

This commit is contained in:
Ricardo Gonzalez
2026-05-23 17:38:15 -05:00
parent 002d8f06d3
commit 72662852bf
24 changed files with 347 additions and 59 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
/**
* Scheduler tipo cron para KAPPA Hub.
* Scheduler tipo cron para Alpha.
*
* Las tareas se ejecutan solo cuando la app está abierta (web app).
* En RUMBO (Tauri) esto se vuelve un proceso en segundo plano real.
@@ -38,7 +38,7 @@ interface ExecutionLog {
message: string
}
const db = new Dexie('kappa-hub-scheduler') as Dexie & {
const db = new Dexie('alpha-scheduler') as Dexie & {
rules: EntityTable<ScheduleRule, 'id'>
logs: EntityTable<ExecutionLog, 'id'>
}