forked from HKUDS/Vibe-Trading
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.dockerignore
More file actions
50 lines (43 loc) · 740 Bytes
/
.dockerignore
File metadata and controls
50 lines (43 loc) · 740 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# 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
CLAUDE.md
CONTRIBUTING.md
*.md
!README.md
!LICENSE