workspace-v1/projects/gamilit/orchestration/environment/PROJECT-ENV-CONFIG.yml
Adrian Flores Cortes 967ab360bb Initial commit: Workspace v1 with 3-layer architecture
Structure:
- control-plane/: Registries, SIMCO directives, CI/CD templates
- projects/: Gamilit, ERP-Suite, Trading-Platform, Betting-Analytics
- shared/: Libs catalog, knowledge-base

Key features:
- Centralized port, domain, database, and service registries
- 23 SIMCO directives + 6 fundamental principles
- NEXUS agent profiles with delegation rules
- Validation scripts for workspace integrity
- Dockerfiles for all services
- Path aliases for quick reference

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-23 00:35:19 -06:00

50 lines
1.4 KiB
YAML

# =============================================================================
# PROJECT-ENV-CONFIG.yml - GAMILIT
# =============================================================================
# Proyecto: GAMILIT - Sistema de Gamificación Educativa
# Actualizado: 2025-12-05
# Referencia: ~/workspace/core/devtools/environment/DEV-ENVIRONMENT-REGISTRY.yml
# =============================================================================
project:
name: "GAMILIT"
slug: "gamilit"
description: "Sistema de Gamificación Educativa"
status: "active"
port_block: 3000
ports:
frontend: 3005 # Vite dev server
backend: 3006 # NestJS API
websocket: 3006 # WebSocket (mismo puerto que backend)
database:
host: "localhost"
port: 5432
name: "gamilit_platform"
user: "gamilit_user"
# password: Ver archivo .env local
urls:
frontend: "http://localhost:3005"
backend_api: "http://localhost:3006/api"
swagger: "http://localhost:3006/api/docs"
env_files:
backend: "apps/backend/.env"
frontend: "apps/frontend/.env"
stack:
backend: "NestJS + TypeScript"
frontend: "React + TypeScript + Vite"
database: "PostgreSQL 15"
# Estado: Configuración actual correcta, no requiere migración
migration:
required: false
notes: |
- Proyecto principal del workspace
- Configuración de puertos ya establecida y correcta
- Frontend: 3005, Backend: 3006