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>
30 lines
591 B
Plaintext
30 lines
591 B
Plaintext
# Environment Configuration for Trading Agents Service
|
|
|
|
# Environment
|
|
ENVIRONMENT=development
|
|
LOG_LEVEL=INFO
|
|
|
|
# Binance API (Testnet)
|
|
BINANCE_API_KEY=your_binance_testnet_api_key
|
|
BINANCE_API_SECRET=your_binance_testnet_api_secret
|
|
BINANCE_TESTNET=true
|
|
|
|
# ML Engine
|
|
ML_ENGINE_URL=http://ml-engine:3083
|
|
ML_ENGINE_API_KEY=dev_ml_key
|
|
|
|
# Database
|
|
DATABASE_URL=postgresql+asyncpg://orbiquant:dev_password@database:5432/orbiquant
|
|
|
|
# Redis
|
|
REDIS_URL=redis://redis:6379/0
|
|
|
|
# API
|
|
API_PORT=3086
|
|
API_HOST=0.0.0.0
|
|
|
|
# PostgreSQL
|
|
POSTGRES_USER=orbiquant
|
|
POSTGRES_PASSWORD=dev_password
|
|
POSTGRES_DB=orbiquant
|