Skip to content

Commit a3ce4c6

Browse files
authored
Merge pull request #46 from SyTW2526/feature/chatbot
Feature/chatbot
2 parents 1733981 + f070f9b commit a3ce4c6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+5978
-1048
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ coverage/
44
# Environment variables
55
.env
66
.env*.local
7+
# Vercel
8+
.vercel
79
# Build outputs
810
dist/
911
dist-ssr/
@@ -33,5 +35,4 @@ Thumbs.db
3335
# Prisma generated files (server)
3436
server/src/generated/prisma
3537
# VSCode extensions config exception
36-
/package.json
3738
coverage/

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,20 @@ El **Gestor de Tareas Colaborativo** es una aplicación web fullstack diseñada
1313
- **Filtros avanzados**: Búsqueda y filtrado potente para encontrar tus tareas rápidamente
1414
- **Dashboard resumen**: Visualiza el estado de tus tareas de un vistazo
1515
- **Soporte multiidioma**: Personaliza tu experiencia en tu idioma preferido
16-
- **ChatBot integrado**: Asistente virtual para ayudarte a usar la plataforma
16+
- **ChatBot integrado**: Asistente virtual con IA para ayudarte a usar la plataforma
1717
- **Gestión de permisos**: Control granular sobre quién puede ver y editar tus tareas
1818

1919
---
2020

21+
## 🚀 Despliegue
22+
23+
Para desplegar en Vercel u otras plataformas, consulta [DEPLOYMENT.md](DEPLOYMENT.md) para instrucciones detalladas sobre:
24+
- Configuración de variables de entorno
25+
- Opciones para el servicio de IA (Ollama/Groq/OpenAI)
26+
- Alternativas de deployment (Vercel, Railway, Render)
27+
28+
---
29+
2130
## Autores
2231

2332
[![Integrante1](https://img.shields.io/badge/Laura%20Álvarez%20Zamora-alu0101349824-white?style=for-the-badge)](https://github.com/alu0101349824)

api/server.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
export default async function handler(req: any, res: any) {
2+
const { app } = await import("../server/dist/server.js");
3+
return app(req, res);
4+
}

0 commit comments

Comments
 (0)