- Configure workspace Git repository with comprehensive .gitignore - Add Odoo as submodule for ERP reference code - Include documentation: SETUP.md, GIT-STRUCTURE.md - Add gitignore templates for projects (backend, frontend, database) - Structure supports independent repos per project/subproject level Workspace includes: - core/ - Reusable patterns, modules, orchestration system - projects/ - Active projects (erp-suite, gamilit, trading-platform, etc.) - knowledge-base/ - Reference code and patterns (includes Odoo submodule) - devtools/ - Development tools and templates - customers/ - Client implementations template 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
41 lines
1.4 KiB
Markdown
41 lines
1.4 KiB
Markdown
# Guías de Desarrollo Frontend
|
|
|
|
**Versión:** 1.0.0
|
|
**Última Actualización:** 2025-11-28
|
|
|
|
---
|
|
|
|
## Índice de Guías
|
|
|
|
| Guía | Descripción |
|
|
|------|-------------|
|
|
| [ESTRUCTURA-FEATURES.md](./ESTRUCTURA-FEATURES.md) | Estructura de las 9 features |
|
|
| [ESTRUCTURA-SHARED.md](./ESTRUCTURA-SHARED.md) | Componentes y utilidades compartidas |
|
|
| [COMPONENTES-UI.md](./COMPONENTES-UI.md) | Librería de componentes UI |
|
|
| [STATE-MANAGEMENT.md](./STATE-MANAGEMENT.md) | Zustand y React Query |
|
|
| [API-INTEGRATION.md](./API-INTEGRATION.md) | Conexión con backend (resumen) |
|
|
| [API-ARCHITECTURE.md](./API-ARCHITECTURE.md) | Arquitectura completa de API clients |
|
|
| [SETUP-DEVELOPMENT.md](./SETUP-DEVELOPMENT.md) | Configuración de entorno |
|
|
| [TESTING-GUIDE.md](./TESTING-GUIDE.md) | Tests con Vitest y Testing Library |
|
|
|
|
---
|
|
|
|
## Quick Start
|
|
|
|
1. Configurar entorno: [SETUP-DEVELOPMENT.md](./SETUP-DEVELOPMENT.md)
|
|
2. Entender estructura: [ESTRUCTURA-FEATURES.md](./ESTRUCTURA-FEATURES.md)
|
|
3. Usar componentes: [COMPONENTES-UI.md](./COMPONENTES-UI.md)
|
|
4. Gestionar estado: [STATE-MANAGEMENT.md](./STATE-MANAGEMENT.md)
|
|
5. Escribir tests: [TESTING-GUIDE.md](./TESTING-GUIDE.md)
|
|
|
|
---
|
|
|
|
## Stack Tecnológico
|
|
|
|
- **Runtime:** Node.js 18+
|
|
- **Framework:** React 18 + Vite
|
|
- **Estado del servidor:** TanStack Query (React Query)
|
|
- **Estado del cliente:** Zustand
|
|
- **Estilos:** Tailwind CSS
|
|
- **Testing:** Vitest + React Testing Library
|