mirror of
https://github.com/rnvm9wjdtj-bot/myaps_api.git
synced 2026-06-02 05:54:40 +00:00
65 lines
592 B
Plaintext
65 lines
592 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
venv/
|
|
env/
|
|
ENV/
|
|
.venv/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Git
|
|
.git/
|
|
.gitignore
|
|
|
|
# Docker
|
|
Dockerfile
|
|
docker-compose.yml
|
|
.dockerignore
|
|
|
|
# Logs (运行时生成)
|
|
logs/
|
|
*.log
|
|
|
|
# Local storage (运行时生成)
|
|
storage/*.sqlite3
|
|
storage/binlog_position.json
|
|
|
|
# Project files with sensitive data
|
|
project_files/**/dev.json
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
.cache/
|
|
|
|
# Test files
|
|
tests/
|
|
test_*.py
|
|
*_test.py
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# Distribution
|
|
dist/
|
|
build/
|
|
*.egg-info/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Other
|
|
.arts/
|
|
*.md
|
|
!README.md
|