项目文件夹

文件
wehub-resource-sync a2cb1f9821
CI / test (push) Has been cancelled
Wiki / validate (push) Has been cancelled
Deploy Wiki / Deploy to Cloudflare Pages (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:03:55 +08:00

54 行
982 B
Plaintext

# Version control & CI
.git/
.github/
# IDE & editor
.claude/
.vscode/
.editorconfig
# Python artifacts
.venv/
agent/.venv/
__pycache__/
*.pyc
.pytest_cache/
.ruff_cache/
agent/vibe_trading.egg-info/
agent/vibe_trading_ai.egg-info/
agent/__pycache__/
# Runtime data (generated at runtime, not in repo)
data/
agent/runs/
agent/sessions/
agent/.swarm/runs/
agent/.ui_runtime/
agent/.tasks/
# Env files (mounted via docker-compose env_file)
.env
agent/.env
# Frontend build (built inside Docker, don't copy local)
frontend/dist/
frontend/node_modules/
frontend/tsconfig.tsbuildinfo
# Tests & docs (not needed in production image)
agent/tests/
docs/
assets/
build/
dist/
# Project docs
# NOTE: `*` never crosses `/` in Docker ignore matching, so `/*.md` (anchored)
# excludes only ROOT-level markdown. Nested skill docs (agent/src/skills/**/*.md)
# and agent/SKILL.md are intentionally NOT excluded — they ship in the image.
CLAUDE.md
CONTRIBUTING.md
/*.md
!README.md
!LICENSE