feat: initial ChatUI modular con arbol de temas, chat n8n y KeyNotes editables

This commit is contained in:
JRike24 2026-06-27 21:03:10 -05:00
commit 19aaeb8619
42 changed files with 6155 additions and 0 deletions

12
Dockerfile Normal file
View file

@ -0,0 +1,12 @@
FROM node:20-alpine AS builder
WORKDIR /app
COPY package.json package-lock.json* ./
RUN npm install
COPY . .
RUN npm run build
FROM nginx:1.27-alpine AS runtime
COPY nginx.conf /etc/nginx/conf.d/default.conf
COPY --from=builder /app/dist /usr/share/nginx/html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]