eeeeeeeeeeeeee six seven !!!!!

Matthew Trejo e1fd39e293 minor changes to waiting for message hace 1 mes
.claude 4e587d20ee implement analytics hace 1 mes
docs 289dfe6aca why is the api not answering wth hace 1 mes
guides 0cf6b9653b new start for sure hace 2 meses
prisma 4e587d20ee implement analytics hace 1 mes
public 4e587d20ee implement analytics hace 1 mes
scripts e1fd39e293 minor changes to waiting for message hace 1 mes
src e1fd39e293 minor changes to waiting for message hace 1 mes
uploads 0cf6b9653b new start for sure hace 2 meses
.gitignore 0cf6b9653b new start for sure hace 2 meses
JITSI_SETUP.md e5d9a6cbad implement selfhost jitsi meet support hace 1 mes
README.md a6f80ccaf7 minimal readme hace 2 meses
components.json 0cf6b9653b new start for sure hace 2 meses
ecosystem.config.js 0cf6b9653b new start for sure hace 2 meses
env.sample.txt fe7b5b4d7d only use utb api for auth hace 2 meses
eslint.config.mjs 0cf6b9653b new start for sure hace 2 meses
middleware.ts 0cf6b9653b new start for sure hace 2 meses
next.config.ts 0cf6b9653b new start for sure hace 2 meses
package-lock.json 95d7c2a277 wdym i can save the record twice lmao hace 1 mes
package.json 4e46ab86b9 add migrations commands for prod hace 1 mes
postcss.config.js 0cf6b9653b new start for sure hace 2 meses
tailwind.config.js 0cf6b9653b new start for sure hace 2 meses
tsconfig.json 0cf6b9653b new start for sure hace 2 meses

README.md

Ani Assistant

Plataforma de asistente médico virtual con Next.js, TypeScript y PostgreSQL.

Stack

Next.js 15 • TypeScript • PostgreSQL • Prisma • NextAuth.js • TailwindCSS • shadcn/ui

Instalación Rápida

# 1. Instalar dependencias
npm install

# 2. Configurar .env (copiar de env.sample.txt)
DATABASE_URL="postgresql://postgres:password@localhost:5432/ani_assistant"
NEXTAUTH_SECRET="your-secret"
OPENROUTER_API_KEY="optional"

# 3. Setup base de datos
npm run db:push
npm run db:setup

# 4. Iniciar
npm run dev

Ver guides/QUICK_START.md para más detalles.

Roles

  • ADMIN: Gestión de usuarios y sistema
  • DOCTOR: Visualización de pacientes y reportes
  • PATIENT: Chat médico y reportes personales

Scripts

npm run dev          # Desarrollo
npm run build        # Producción
npm run db:push      # Migrar DB
npm run db:setup     # Usuarios de prueba
npm run check-env    # Verificar config

Producción

# Configurar PostgreSQL
psql -U postgres
CREATE DATABASE ani_assistant;

# Desplegar
npm install
npm run build
npm run db:push
npm run db:setup
npm start

⚠️ Solo para fines educativos. No usar para diagnóstico médico real.