# Git .git .gitignore .gitattributes # Python cache __pycache__/ *.py[cod] *$py.class *.so # Virtual environments venv/ env/ ENV/ .venv/ # IDE .vscode/ .idea/ *.swp *.swo *~ # Testing .pytest_cache/ .coverage htmlcov/ .tox/ .nox/ tests/ test_*.py *_test.py # Documentation README.md docs/ *.md LICENSE # CI/CD .github/ .gitlab-ci.yml .travis.yml Jenkinsfile # Docker Dockerfile* docker-compose*.yml .dockerignore # Environment files (will be injected at runtime) .env .env.* # Development files *.log logs/ # OS files .DS_Store Thumbs.db desktop.ini # Temporary files *.tmp *.bak *~ # GeoIP database (downloaded at runtime or mounted) geoip_db/*.mmdb geoip_db/config.json # Build artifacts build/ dist/ *.egg-info/ # Node modules (if any frontend tools) node_modules/ npm-debug.log yarn-error.log geoip_db