- HERENCIA-SIMCO.md actualizado con directivas v3.7 y v3.8 - Actualizaciones de configuracion Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
93 lines
2.6 KiB
Markdown
93 lines
2.6 KiB
Markdown
---
|
|
id: "DOCS-ROOT"
|
|
title: "Documentacion Template SaaS"
|
|
type: "Overview"
|
|
status: "Published"
|
|
priority: "P0"
|
|
version: "1.0.0"
|
|
created_date: "2026-01-07"
|
|
updated_date: "2026-01-10"
|
|
---
|
|
|
|
# Template SaaS - Documentacion
|
|
|
|
**Proyecto:** template-saas
|
|
**Version:** 1.0.0
|
|
**Estado:** Release Candidate
|
|
**Sistema:** SIMCO v3.7
|
|
|
|
---
|
|
|
|
## Descripcion
|
|
|
|
Template base para desarrollo de plataformas SaaS multi-tenant con:
|
|
- Autenticacion JWT + OAuth
|
|
- Multi-tenancy con PostgreSQL RLS
|
|
- Billing con Stripe
|
|
- Notificaciones multicanal (Email, Push, WebSocket, WhatsApp)
|
|
- Feature Flags por tenant/plan/user
|
|
- Integracion IA multi-proveedor
|
|
- Storage multi-proveedor (S3, R2, MinIO)
|
|
|
|
---
|
|
|
|
## Navegacion
|
|
|
|
### Documentacion Principal
|
|
|
|
| Seccion | Descripcion |
|
|
|---------|-------------|
|
|
| [Mapa de Documentacion](./_MAP.md) | Indice completo de documentacion |
|
|
| [Vision General](./00-vision-general/README.md) | Arquitectura y vision del proyecto |
|
|
| [Modulos](./01-modulos/) | Especificaciones de 14 modulos SAAS |
|
|
| [Integraciones](./02-integraciones/) | 8 integraciones externas |
|
|
| [ADRs](./architecture/adr/) | 5 Architecture Decision Records |
|
|
|
|
### Por Tipo de Documento
|
|
|
|
- **Modulos SAAS:** `docs/01-modulos/SAAS-*.md`
|
|
- **Integraciones:** `docs/02-integraciones/INT-*.md`
|
|
- **ADRs:** `docs/architecture/adr/ADR-*.md`
|
|
- **Especificaciones:** `docs/02-especificaciones/ET-*.md`
|
|
|
|
---
|
|
|
|
## Referencias de Orchestration
|
|
|
|
| Documento | Proposito |
|
|
|-----------|-----------|
|
|
| [Contexto del Proyecto](../orchestration/00-guidelines/CONTEXTO-PROYECTO.md) | Alias, rutas, convenciones |
|
|
| [Estado del Proyecto](../orchestration/PROJECT-STATUS.md) | Estado actual y progreso |
|
|
| [Herencia SIMCO](../orchestration/00-guidelines/HERENCIA-SIMCO.md) | Directivas heredadas |
|
|
| [Inventario Master](../orchestration/inventarios/MASTER_INVENTORY.yml) | SSOT del proyecto |
|
|
|
|
---
|
|
|
|
## Quick Links
|
|
|
|
- **Backend:** `apps/backend/` - NestJS 10.x + TypeORM
|
|
- **Frontend:** `apps/frontend/` - React 18.x + Vite
|
|
- **Database:** `apps/database/` - PostgreSQL 16+ DDL
|
|
|
|
---
|
|
|
|
## Estructura de Documentacion
|
|
|
|
```
|
|
docs/
|
|
├── README.md # Este archivo
|
|
├── _MAP.md # Mapa completo de documentacion
|
|
├── 00-vision-general/ # Vision y arquitectura
|
|
├── 01-modulos/ # Especificaciones SAAS-001 a SAAS-014
|
|
├── 02-integraciones/ # Integraciones INT-001 a INT-008
|
|
├── 02-especificaciones/ # Especificaciones tecnicas
|
|
├── 02-devops/ # Guias de CI/CD y despliegue
|
|
└── architecture/
|
|
└── adr/ # Architecture Decision Records
|
|
```
|
|
|
|
---
|
|
|
|
**Ultima actualizacion:** 2026-01-10
|
|
**Autor:** Claude Code (Estandarizacion SIMCO v3.7)
|