- 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>
32 lines
641 B
YAML
32 lines
641 B
YAML
# Database Configuration
|
|
mysql:
|
|
host: "72.60.226.4"
|
|
port: 3306
|
|
user: "root"
|
|
password: "AfcItz2391,."
|
|
database: "db_trading_meta"
|
|
pool_size: 10
|
|
max_overflow: 20
|
|
pool_timeout: 30
|
|
pool_recycle: 3600
|
|
echo: false
|
|
|
|
redis:
|
|
host: "localhost"
|
|
port: 6379
|
|
db: 0
|
|
password: null
|
|
decode_responses: true
|
|
max_connections: 50
|
|
|
|
# Data fetching settings
|
|
data:
|
|
default_limit: 50000
|
|
batch_size: 5000
|
|
cache_ttl: 300 # seconds
|
|
|
|
# Table names
|
|
tables:
|
|
tickers_agg_data: "tickers_agg_data"
|
|
tickers_agg_ind_data: "tickers_agg_ind_data"
|
|
tickers_agg_data_predict: "tickers_agg_data_predict" |