# Git .git .gitignore # Python __pycache__ *.pyc *.pyo *.pyd .Python env venv .venv pip-log.txt pip-delete-this-directory.txt .tox .coverage .coverage.* .pytest_cache nosetests.xml coverage.xml *.cover *.log .cache .mypy_cache .pytest_cache .hypothesis # Docker Dockerfile* docker-compose*.yml .dockerignore # 开发文件 .env .env.* *.env .vscode .idea *.swp *.swo *~ # 文档 README.md *.md docs/ # 数据目录 data/ uploads/ logs/ *.db *.sqlite # 临时文件 *.tmp *.temp .DS_Store Thumbs.db # 脚本 start.sh *.sh