cicd-debugger-env / .gitignore
Lishika's picture
finally added all
ae94737
raw
history blame contribute delete
640 Bytes
# Python bytecode and cache
__pycache__/
*.py[cod]
*$py.class
# Virtual environments
# Keep source folder env/ tracked; only ignore venv directories.
.venv/
venv/
env.bak/
venv.bak/
# Build and packaging artifacts
build/
dist/
.eggs/
*.egg-info/
*.egg
pip-wheel-metadata/
# Testing, typing, linting caches
.pytest_cache/
.mypy_cache/
.ruff_cache/
.pyre/
.pytype/
.hypothesis/
.tox/
.nox/
.coverage
.coverage.*
htmlcov/
# Jupyter
.ipynb_checkpoints/
# Logs and temp files
*.log
*.out
*.err
tmp/
temp/
# Local environment and secrets
.env
.env.*
!.env.example
# IDE/editor and OS files
.vscode/
.idea/
*.swp
*.swo
.DS_Store
Thumbs.db