20 lines
171 B
Plaintext
20 lines
171 B
Plaintext
|
|
# 忽略本地环境配置
|
||
|
|
.env
|
||
|
|
.env.*
|
||
|
|
|
||
|
|
# 忽略缓存
|
||
|
|
__pycache__/
|
||
|
|
*.pyc
|
||
|
|
*.pyo
|
||
|
|
|
||
|
|
# 忽略git
|
||
|
|
.git/
|
||
|
|
.gitignore
|
||
|
|
|
||
|
|
# 忽略测试文件
|
||
|
|
test_*.py
|
||
|
|
|
||
|
|
# 忽略IDE
|
||
|
|
.idea/
|
||
|
|
.vscode/
|