- Move 2 non-standard folders to _archive/ - Create 5 missing obligatory files - Update _MAP.md with standardized structure Standard: SIMCO-ESTANDAR-ORCHESTRATION v1.0.0 Level: CONSUMER (L2) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
48 lines
1.4 KiB
YAML
48 lines
1.4 KiB
YAML
# =============================================================================
|
|
# PROJECT-ENV-CONFIG.yml
|
|
# Configuración de Ambiente específica del proyecto BETTING-ANALYTICS
|
|
# =============================================================================
|
|
# Proyecto: BETTING-ANALYTICS - Análisis de Apuestas Deportivas
|
|
# Actualizado: 2025-12-05
|
|
# Referencia: ~/workspace/core/devtools/environment/DEV-ENVIRONMENT-REGISTRY.yml
|
|
# =============================================================================
|
|
|
|
project:
|
|
name: "BETTING_ANALYTICS"
|
|
slug: "betting-analytics"
|
|
description: "Plataforma de Análisis de Apuestas Deportivas"
|
|
status: "development"
|
|
port_block: 3090
|
|
|
|
ports:
|
|
frontend: 3090
|
|
backend: 3091
|
|
ml_service: 8003
|
|
|
|
database:
|
|
host: "localhost"
|
|
port: 5438 # Puerto asignado para betting-analytics (ver DEVENV-PORTS-INVENTORY.yml)
|
|
name: "betting_analytics"
|
|
user: "betting_user"
|
|
# password: Ver archivo .env local
|
|
|
|
urls:
|
|
frontend: "http://localhost:3090"
|
|
backend_api: "http://localhost:3091/api"
|
|
swagger: "http://localhost:3091/api/docs"
|
|
|
|
env_files:
|
|
backend: "apps/backend/.env"
|
|
frontend: "apps/frontend/.env"
|
|
|
|
stack:
|
|
backend: "NestJS + TypeScript"
|
|
frontend: "React + TypeScript + Vite"
|
|
database: "PostgreSQL 15"
|
|
ml_service: "FastAPI + Python"
|
|
|
|
notes: |
|
|
- Proyecto en desarrollo inicial
|
|
- Servicio ML para análisis predictivo de apuestas
|
|
- Base de datos: betting_analytics (en instancia PostgreSQL compartida)
|