# ----------------------------------------------------------------------------- # Operating systems # ----------------------------------------------------------------------------- .DS_Store .AppleDouble .LSOverride Thumbs.db Desktop.ini $RECYCLE.BIN/ # ----------------------------------------------------------------------------- # Editors and IDEs # ----------------------------------------------------------------------------- .idea/ .vscode/* !.vscode/extensions.json !.vscode/settings.json !.vscode/tasks.json !.vscode/launch.json *.code-workspace *.swp *.swo *~ # ----------------------------------------------------------------------------- # Local configuration, secrets, and environment variables # Keep templates such as .env.example in version control. # ----------------------------------------------------------------------------- .env .env.* !.env.example !.env.sample !.env.template *.local # ----------------------------------------------------------------------------- # Logs, temporary files, and runtime data # ----------------------------------------------------------------------------- *.log logs/ *.pid *.pid.lock *.seed *.tmp *.temp tmp/ temp/ .cache/ # ----------------------------------------------------------------------------- # Python # ----------------------------------------------------------------------------- __pycache__/ *.py[cod] *$py.class *.so # Virtual environments .venv/ venv/ env/ ENV/ # Packaging and builds build/ dist/ downloads/ *.egg-info/ .eggs/ *.egg pip-wheel-metadata/ wheelhouse/ # Test, coverage, type-checker, and linter caches .pytest_cache/ .coverage .coverage.* coverage.xml htmlcov/ .tox/ .nox/ .hypothesis/ .mypy_cache/ .pyre/ .pytype/ .ruff_cache/ # Framework and notebook artifacts *.mo *.pot instance/ .scrapy/ .ipynb_checkpoints/ # ----------------------------------------------------------------------------- # Node.js / JavaScript / TypeScript # ----------------------------------------------------------------------------- node_modules/ bower_components/ # Package manager caches and diagnostics .npm/ .yarn/cache/ .yarn/unplugged/ .yarn/build-state.yml .yarn/install-state.gz .pnpm-store/ .pnp.* npm-debug.log* yarn-debug.log* yarn-error.log* pnpm-debug.log* # Build outputs and framework caches lib-cov/ coverage/ .nyc_output/ .parcel-cache/ .next/ .nuxt/ .output/ .svelte-kit/ .astro/ .vite/ .docusaurus/ .serverless/ .fusebox/ .dynamodb/ .turbo/ .nx/ out/ # TypeScript incremental build information *.tsbuildinfo # ----------------------------------------------------------------------------- # Miscellaneous generated artifacts # ----------------------------------------------------------------------------- *.bak *.orig *.rej *.patch *.tgz