Files
cursor-auto-register/.dockerignore
2025-03-27 15:20:27 +08:00

48 lines
514 B
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Git相关
.git
.gitignore
# 数据库文件将通过volume挂载
accounts.db
# 日志文件将通过volume挂载
*.log
# 环境变量文件将通过volume挂载
.env
# Python缓存文件
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg
# 虚拟环境
venv/
ENV/
# IDE文件
.idea/
.vscode/
*.swp
*.swo
# 其他
.DS_Store
Thumbs.db