返回 JoyAI-Echo
.gitignore
根目录 / echo_longvideo / .gitignore
1 # --- Python ---
2 __pycache__/
3 *.py[cod]
4 *$py.class
5 *.so
6 .Python
7 *.egg
8 *.egg-info/
9 build/
10 dist/
11 .eggs/
12 .pytest_cache/
13 .mypy_cache/
14 .ruff_cache/
15
16 # --- Virtual envs ---
17 .venv/
18 venv/
19 env/
20 .env
21
22 # --- Editor / OS ---
23 .vscode/
24 .idea/
25 .DS_Store
26 Thumbs.db
27 *.swp
28 *.swo
29
30 # --- Claude Code workspace ---
31 .claude/
32
33 # --- Local user config ---
34 configs/*.local.yaml
35
36 # --- Inference artifacts ---
37 inference_result/
38 text_embeddings/
39 conditioning_cache/
40 outputs/
41 logs/
42 runs/
43 tmp/
44 data/
45 *.log
46 *.pid
47
48 # --- Model weights / large binaries ---
49 # Checkpoint files are downloaded separately; do not commit.
50 checkpoints/*
51 !checkpoints/.gitkeep
52 !checkpoints/README.md
53 *.safetensors
54 *.pt
55 *.bin
56 *.ckpt
57 *.onnx
58
59 # --- Generated media ---
60 *.mp4
61 *.mov
62 *.avi
63 *.mkv
64 *.wav
65 *.flac
66 *.mp3
67 !examples/the_last_visa/assets/audio/*.wav
68
69 # --- Misc ---
70 *.tmp
71 *.bak
72 node_modules/
73
74 # --- Local benchmark and documentation exports ---
75 benchmark_site.local/
76 joyai-echo.pdf
77 scripts/*.local.sh
78
79 # --- External source checkouts ---
80 third_party/*
81 !third_party/README.md
82
83 # Local environment exports
84 condaenv.*.requirements.txt
85
85 lines Plain Text