feat: initial commit - EvoTraders project
量化交易多智能体系统,包含: - 分析师、投资组合经理、风险经理等智能体 - 股票分析、投资组合管理、风险控制工具 - React 前端界面 - FastAPI 后端服务 Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
63
.gitignore
vendored
Normal file
63
.gitignore
vendored
Normal file
@@ -0,0 +1,63 @@
|
||||
# Python
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*$py.class
|
||||
*.so
|
||||
.Python
|
||||
build/
|
||||
develop-eggs/
|
||||
dist/
|
||||
eggs/
|
||||
.eggs/
|
||||
lib64/
|
||||
parts/
|
||||
sdist/
|
||||
var/
|
||||
wheels/
|
||||
*.egg-info/
|
||||
.installed.cfg
|
||||
*.egg
|
||||
|
||||
# Virtual Environment
|
||||
/.venv/
|
||||
ENV/
|
||||
|
||||
# Environment Variables
|
||||
.env
|
||||
|
||||
# IDE
|
||||
.idea/
|
||||
.vscode/
|
||||
*.swp
|
||||
*.swo
|
||||
.cursorrules
|
||||
.cursorignore
|
||||
|
||||
# OS
|
||||
.DS_Store
|
||||
|
||||
# Txt files
|
||||
*.txt
|
||||
|
||||
# PDF files
|
||||
*.pdf
|
||||
|
||||
# Frontend
|
||||
node_modules
|
||||
|
||||
# Outputs
|
||||
outputs/
|
||||
|
||||
# Data files
|
||||
backend/data/ret_data/
|
||||
|
||||
# Database files (users will have their own local databases)
|
||||
*.db
|
||||
*.db-journal
|
||||
*.db-wal
|
||||
*.db-shm
|
||||
*.sqlite
|
||||
*.sqlite3
|
||||
|
||||
*.ipynb
|
||||
*.log
|
||||
Reference in New Issue
Block a user