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>
46 lines
1.8 KiB
Plaintext
46 lines
1.8 KiB
Plaintext
# ==============================================================================
|
|
# GAMILIT - VARIABLES DE ENTORNO
|
|
# ==============================================================================
|
|
# Copiar a .env y configurar valores
|
|
# ==============================================================================
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# AMBIENTE
|
|
# ------------------------------------------------------------------------------
|
|
NODE_ENV=development
|
|
ENV=local
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# BASE DE DATOS
|
|
# ------------------------------------------------------------------------------
|
|
POSTGRES_DB=gamilit_db
|
|
POSTGRES_USER=gamilit_owner
|
|
POSTGRES_PASSWORD=your_secure_password_here
|
|
|
|
# Connection string para la aplicacion
|
|
DATABASE_URL=postgresql://gamilit_app:app_password@postgres:5432/gamilit_db
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# REDIS
|
|
# ------------------------------------------------------------------------------
|
|
REDIS_URL=redis://redis:6379
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# JWT
|
|
# ------------------------------------------------------------------------------
|
|
JWT_SECRET=your_jwt_secret_here_min_32_chars
|
|
JWT_EXPIRES_IN=1d
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# APLICACION
|
|
# ------------------------------------------------------------------------------
|
|
LOG_LEVEL=info
|
|
CORS_ORIGIN=http://gamilit.localhost
|
|
|
|
# ------------------------------------------------------------------------------
|
|
# FRONTEND
|
|
# ------------------------------------------------------------------------------
|
|
VITE_API_URL=http://api.gamilit.localhost
|
|
VITE_WS_URL=ws://ws.gamilit.localhost
|
|
VITE_APP_NAME=Gamilit
|