mirror of
https://github.com/agessaman/meshcore-packet-capture.git
synced 2026-04-20 23:23:37 +00:00
100 lines
No EOL
1.1 KiB
Text
100 lines
No EOL
1.1 KiB
Text
# Git and version control
|
|
.git
|
|
.gitignore
|
|
.github/
|
|
|
|
# Python cache and build artifacts
|
|
__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
|
|
|
|
# Virtual environments
|
|
venv/
|
|
env/
|
|
ENV/
|
|
.venv/
|
|
|
|
# IDE and editor files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Documentation and README files
|
|
README.md
|
|
*.md
|
|
docs/
|
|
|
|
# Test files and directories
|
|
tests/
|
|
test_*
|
|
*_test.py
|
|
pytest.ini
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# Docker files (don't include in build context)
|
|
Dockerfile*
|
|
docker-compose*.yml
|
|
.dockerignore
|
|
|
|
# Installation scripts
|
|
install.sh
|
|
install.ps1
|
|
uninstall.sh
|
|
|
|
# Old and temporary files
|
|
old/
|
|
*.tmp
|
|
*.temp
|
|
*.log
|
|
|
|
# Data and output files
|
|
data/
|
|
output/
|
|
*.json
|
|
*.csv
|
|
# Note: requirements.txt is needed for Docker build, so we don't exclude *.txt
|
|
|
|
# Configuration files that might contain secrets
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Node.js (if any)
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Backup files
|
|
*.bak
|
|
*.backup |