mirror of
https://github.com/RGJorge/ContainerFlow.git
synced 2026-08-03 07:21:42 +02:00
849 B
849 B
01 — Project Setup
Objetivo
Inicializar el proyecto con Bun, TypeScript, Vite, React y todas las dependencias.
Tareas
bun initcon TypeScriptpackage.jsoncon scripts:dev,build,starttsconfig.jsonpara server (Node/Bun) y client (React)vite.config.tscon React plugin y proxy al server- Instalar dependencias:
- Server:
hono,dockerode,yaml,zod - Client:
react,react-dom,@xyflow/react,@dagrejs/dagre - Dev:
typescript,vite,@vitejs/plugin-react,tailwindcss,@types/dockerode
- Server:
- Crear estructura de carpetas:
src/ ├── server/ ├── client/ └── shared/ - Verificar que
bun run devarranca sin errores
Criterio de completado
bun run dev levanta el server Hono en :9470 y sirve una página React vacía.