Plataforma oficial de registro

Tu carrera.
Tu marca.

Inscripción rápida, segura y profesional para eventos de atletismo y carreras pedestres.

Ver eventos disponibles Acceso organizador

Próximas carreras

Eventos disponibles

Cargando eventos…

Panel de control

Acceso organizador

Panel activo

Oval Crono Events

0
Inscritos
0
Masculino
0
Femenino
$0
Ganancia fees
#NombreF.NacSexoEventoCat.ChipTallaT.Est.EmailTeléfonoClubPagoTotalFecha

Crea y administra los eventos de carrera.

Crear evento

JPG, PNG o WebP. Máximo 2MB. Se mostrará en la tarjeta del evento.
EventoFechaLugarPrecioCuposInscritosAcciones
⚙️ Configuración de Supabase

Para activar la base de datos real ingresa tus credenciales.
Las encuentras en: supabase.com → Tu proyecto → Settings → API

📋 SQL — Ejecuta esto en Supabase → SQL Editor

CREATE TABLE eventos (
  id uuid DEFAULT gen_random_uuid() PRIMARY KEY,
  nombre text NOT NULL,
  descripcion text,
  fecha date NOT NULL,
  hora time,
  lugar text NOT NULL,
  precio numeric(10,2) NOT NULL DEFAULT 20,
  categorias text DEFAULT '5K,10K',
  cupos integer DEFAULT 200,
  activo boolean DEFAULT true,
  created_at timestamptz DEFAULT now()
);

CREATE TABLE inscritos (
  id uuid DEFAULT gen_random_uuid() PRIMARY KEY,
  evento_id uuid REFERENCES eventos(id),
  evento_nombre text,
  nombre text NOT NULL,
  fecha_nac date,
  sexo text,
  telefono text,
  email text,
  club text,
  categoria text,
  talla text,
  chip text,
  tiempo_estimado text,
  metodo_pago text,
  total numeric(10,2),
  created_at timestamptz DEFAULT now()
);

ALTER TABLE eventos ENABLE ROW LEVEL SECURITY;
ALTER TABLE inscritos ENABLE ROW LEVEL SECURITY;
CREATE POLICY "pub read" ON eventos FOR SELECT USING (activo = true);
CREATE POLICY "pub insert" ON inscritos FOR INSERT WITH CHECK (true);
CREATE POLICY "adm eventos" ON eventos FOR ALL USING (true);
CREATE POLICY "adm inscritos" ON inscritos FOR ALL USING (true);