mirror of
https://github.com/HKUDS/AI-Trader
synced 2026-04-21 13:37:41 +00:00
workers (#182) * Separate API service from background workers * Update frontend and environment defaults * Update frontend and environment defaults
130 lines
No EOL
1.6 KiB
Text
130 lines
No EOL
1.6 KiB
Text
# ====================
|
|
# Dependencies
|
|
# ====================
|
|
node_modules/
|
|
.venv/
|
|
venv/
|
|
env/
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# ====================
|
|
# Build outputs
|
|
# ====================
|
|
dist/
|
|
build/
|
|
artifacts/
|
|
cache/
|
|
typechain-types/
|
|
|
|
# ====================
|
|
# Hardhat
|
|
# ====================
|
|
cache/
|
|
artifacts/
|
|
deployments/
|
|
*.log
|
|
|
|
# ====================
|
|
# IDE
|
|
# ====================
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*.swn
|
|
*.suo
|
|
*.ntvs*
|
|
*.njsproj
|
|
*.sln
|
|
*.sw?
|
|
|
|
# ====================
|
|
# OS
|
|
# ====================
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# ====================
|
|
# Logs
|
|
# ====================
|
|
*.log
|
|
logs/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# ====================
|
|
# Python
|
|
# ====================
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
.python-version
|
|
.pytest_cache/
|
|
.coverage
|
|
*.egg-info/
|
|
MANIFEST
|
|
|
|
# ====================
|
|
# Testing
|
|
# ====================
|
|
coverage/
|
|
htmlcov/
|
|
.tox/
|
|
.nox/
|
|
.hypothesis/
|
|
|
|
# ====================
|
|
# Contract deployment
|
|
# ====================
|
|
addresses.json
|
|
!contracts/abi/*.json
|
|
|
|
# ====================
|
|
# Sensitive files
|
|
# ====================
|
|
.secrets/
|
|
.env.secrets
|
|
server/.env
|
|
*.pem
|
|
*.key
|
|
*.crt
|
|
private*.key
|
|
mnemonic*.txt
|
|
|
|
# ====================
|
|
# Closed source (private implementation)
|
|
# ====================
|
|
# closesource/
|
|
|
|
# ====================
|
|
# Misc
|
|
# ====================
|
|
*.tsbuildinfo
|
|
.eslintcache
|
|
.stylelintcache
|
|
.temp/
|
|
.tmp/
|
|
|
|
# ====================
|
|
# Documentation (internal only)
|
|
# ====================
|
|
AGENTS.md
|
|
APPENDICES.md
|
|
AUDIT_REPORT.md
|
|
AUDIT_REPORT_NEW.md
|
|
CLAUDE.md
|
|
/service/data/
|
|
/service/server/data/
|
|
/TODO
|
|
change.md |