- 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>
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:8000
|
|
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=8003
|
|
API_HOST=0.0.0.0
|
|
|
|
# PostgreSQL
|
|
POSTGRES_USER=orbiquant
|
|
POSTGRES_PASSWORD=dev_password
|
|
POSTGRES_DB=orbiquant
|