diff --git a/.gitignore b/.gitignore index e69de29..04ea875 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1,49 @@ +# Secrets +.env +.env.* +!.env.example + +# Python +__pycache__/ +*.py[cod] +*.pyc.* +*.pyd +*.pyo +*.so +.pytest_cache/ +.mypy_cache/ +.ruff_cache/ +.hypothesis/ +.tox/ +.nox/ +.coverage +.coverage.* +htmlcov/ + +# Packaging / build +build/ +dist/ +site/ +.eggs/ +*.egg +*.egg-info/ +pip-wheel-metadata/ + +# Virtual environments +.venv/ +venv/ +env/ +ENV/ + +# Runtime data +logs/ +data/ + +# Editor / OS noise +.idea/ +*.swp +*.swo +*.tmp +.DS_Store +Thumbs.db +Desktop.ini