- 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>
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: 3095
|
|
backend: 3096
|
|
ml_service: 8003
|
|
|
|
database:
|
|
host: "localhost"
|
|
port: 5432 # UNA sola instancia PostgreSQL
|
|
name: "betting_analytics"
|
|
user: "betting_user"
|
|
# password: Ver archivo .env local
|
|
|
|
urls:
|
|
frontend: "http://localhost:3095"
|
|
backend_api: "http://localhost:3096/api"
|
|
swagger: "http://localhost:3096/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)
|