返回 MoneyPrinterTurbo
.gitignore
根目录 / .gitignore
1 .DS_Store
2 /config.toml
3 /storage/
4 /.idea/
5 /app/services/__pycache__
6 /app/__pycache__/
7 /app/config/__pycache__/
8 /app/models/__pycache__/
9 /app/utils/__pycache__/
10 /*/__pycache__/*
11 .vscode
12 /**/.streamlit
13 __pycache__
14 logs/
15
16 node_modules
17 # VuePress 默认临时文件目录
18 /sites/docs/.vuepress/.temp
19 # VuePress 默认缓存目录
20 /sites/docs/.vuepress/.cache
21 # VuePress 默认构建生成的静态文件目录
22 /sites/docs/.vuepress/dist
23 # 模型目录
24 /models/
25 ./models/*
26
27 venv/
28 .venv
29
30 # Debug and test files
31 CLAUDE.md
32 debug/
33 debug_*.py
34 test_*.py
35 !test/services/test_*.py
36 streamlit.log
37 .codegraph
38 /docs/superpowers
39 .understand-anything
40
40 lines Plain Text