# Secrets and local environment files .env .env.* !.env.example bot/.env bot/.env.* !bot/.env.example # Python cache and virtual environments __pycache__/ *.py[cod] *$py.class .python-version .venv/ venv/ env/ ENV/ # Python tooling and test artifacts .pytest_cache/ .mypy_cache/ .ruff_cache/ .pyre/ .hypothesis/ .tox/ .nox/ .coverage .coverage.* htmlcov/ # Build artifacts build/ dist/ site/ .eggs/ *.egg-info/ pip-wheel-metadata/ # Runtime files *.log *.pid logs/ bot/logs/ # Local databases db.sqlite3 db.sqlite3-journal # IDE and OS files .idea/ .vscode/ .DS_Store Thumbs.db