lamhieu/docsifer
13
1# Python bytecode files2# Ignore Python bytecode files3*.pyc4 5# Distribution packages6# Ignore distribution packages7/dist/*8 9# Test and coverage reports10# Ignore coverage and test result files11.coverage12.pytest_cache13.mypy_cache14 15# Log and temporary files16# Ignore log files and temporary files17*.log18*.tmp19tmp20 21# System files22# Ignore OS generated files23.DS_Store24 25# IDE and editor specific files26# Ignore project-specific files from various IDEs and editors27.idea/*28.vscode/*29.python-version30 31# Generated documentation32# Ignore generated documentation files33/docs/site/*34 35# Virtual environments36# Ignore virtual environment directories37.venv38 39# Configuration files40# Ignore configuration files41.poetry.toml42.env.local43.env.development44.env.test45.env.production46.env47 48# Temporary files and directories for operations49# Ignore Ops temporary files and directories50.aider*51 52# Credentials and secrets53# Ignore credentials and secrets files54.credentials55 56# Tooling caches57.ruff_cache58 59# Local reference checkouts (not part of the docsifer project)60/lightweight-embeddings/61 