- 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>
50 lines
1.9 KiB
Plaintext
50 lines
1.9 KiB
Plaintext
# =============================================================================
|
|
# ${PROJECT_NAME} ML Service - Environment Configuration
|
|
# =============================================================================
|
|
# Template generado por NEXUS-DEVENV
|
|
# Proyecto: ${PROJECT_NAME}
|
|
# Fecha: ${DATE}
|
|
# =============================================================================
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# SERVER CONFIGURATION
|
|
# -----------------------------------------------------------------------------
|
|
ENVIRONMENT=development
|
|
HOST=0.0.0.0
|
|
PORT=${ML_SERVICE_PORT}
|
|
DEBUG=true
|
|
RELOAD=true
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# DATABASE CONFIGURATION
|
|
# -----------------------------------------------------------------------------
|
|
DB_HOST=localhost
|
|
DB_PORT=${DB_PORT}
|
|
DB_NAME=${DB_NAME}
|
|
DB_USER=${DB_USER}
|
|
DB_PASSWORD=${DB_PASSWORD}
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# BACKEND API CONNECTION
|
|
# -----------------------------------------------------------------------------
|
|
BACKEND_API_URL=http://localhost:${BACKEND_PORT}/api
|
|
BACKEND_API_KEY=
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# MODEL CONFIGURATION
|
|
# -----------------------------------------------------------------------------
|
|
MODEL_DIR=./models
|
|
MODEL_CACHE_DIR=./cache
|
|
MAX_WORKERS=4
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# LOGGING
|
|
# -----------------------------------------------------------------------------
|
|
LOG_LEVEL=DEBUG
|
|
LOG_FORMAT=%(asctime)s - %(name)s - %(levelname)s - %(message)s
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# CORS
|
|
# -----------------------------------------------------------------------------
|
|
CORS_ORIGINS=http://localhost:${FRONTEND_PORT},http://localhost:${BACKEND_PORT}
|