workspace/core/devtools/environment/templates/.env.frontend.template
rckrdmrd ea1879f4ad feat: Initial workspace structure with multi-level Git configuration
- 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>
2025-12-08 10:44:23 -06:00

39 lines
1.6 KiB
Plaintext

# =============================================================================
# ${PROJECT_NAME} Frontend - Environment Configuration
# =============================================================================
# Template generado por NEXUS-DEVENV
# Proyecto: ${PROJECT_NAME}
# Fecha: ${DATE}
# =============================================================================
# -----------------------------------------------------------------------------
# API CONFIGURATION
# -----------------------------------------------------------------------------
VITE_API_URL=http://localhost:${BACKEND_PORT}/api
VITE_API_VERSION=v1
# -----------------------------------------------------------------------------
# APP CONFIGURATION
# -----------------------------------------------------------------------------
VITE_APP_NAME=${PROJECT_NAME}
VITE_APP_VERSION=1.0.0
VITE_APP_ENV=development
# -----------------------------------------------------------------------------
# FEATURE FLAGS (Optional)
# -----------------------------------------------------------------------------
# VITE_ENABLE_ANALYTICS=false
# VITE_ENABLE_DEBUG=true
# VITE_ENABLE_MOCK_API=false
# -----------------------------------------------------------------------------
# EXTERNAL SERVICES (Optional)
# -----------------------------------------------------------------------------
# VITE_SENTRY_DSN=
# VITE_GA_TRACKING_ID=
# -----------------------------------------------------------------------------
# DEV SERVER
# -----------------------------------------------------------------------------
# Puerto configurado en vite.config.ts: ${FRONTEND_PORT}