diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f3f2153 --- /dev/null +++ b/.gitignore @@ -0,0 +1,45 @@ +# Python +__pycache__/ +*.py[cod] +*$py.class +*.so +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.egg + +# 虚拟环境 +venv/ +env/ +ENV/ +.venv + +# IDE +.vscode/ +.idea/ +*.swp +*.swo +*~ + +# 日志文件 +*.log +trading_bot.log + +# 配置文件(包含敏感信息) +config_local.py + +# 系统文件 +.DS_Store +Thumbs.db