Sternboard: free retro board, no signup (initial)
CI/CD Pipeline / test (push) Successful in 26s
CI/CD Pipeline / build-and-push (push) Successful in 44s

Servidor Fastify + Socket.IO + Drizzle/Postgres; front Vite+React (EN/ES, tema claro/oscuro).
Tableros por columnas con plantillas, notas privadas/públicas, agrupación, votos
configurables (multivoto), timer compartido con alarma, fases, action items,
export Markdown/JSON e import, autodestrucción, gestión de columnas.
Imagen única (front servido por el servidor) y CI que la construye y publica.
This commit is contained in:
Millaguie
2026-06-16 10:27:33 +02:00
commit f11ea58c2c
64 changed files with 12359 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
import { beforeEach } from "vitest";
import postgres from "postgres";
// Limpia las tablas antes de cada test para aislarlos.
const sql = postgres(process.env.DATABASE_URL!, { max: 1 });
beforeEach(async () => {
await sql.unsafe("TRUNCATE action_items, votes, notes, groups, columns, boards CASCADE");
});