返回 MoneyPrinterTurbo
.dockerignore
根目录 / .dockerignore
1 # Exclude common Python files and directories
2 venv/
3 .venv/
4 __pycache__/
5 *.pyc
6 *.pyo
7 *.pyd
8 *.pyz
9 *.pyw
10 *.pyi
11 *.egg-info/
12
13 # Exclude development and local files
14 .env
15 .env.*
16 *.log
17 *.db
18 .DS_Store
19 .pytest_cache/
20 .ruff_cache/
21 .idea/
22 logs/
23
24 # Exclude version control system files
25 .git/
26 .gitignore
27 .svn/
28
29 storage/
30 config.toml
31
31 lines Plain Text