45 lines
406 B
Plaintext
45 lines
406 B
Plaintext
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Editors
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
.venv/
|
|
venv/
|
|
env/
|
|
.pytest_cache/
|
|
.coverage
|
|
.mypy_cache/
|
|
|
|
# Node / Bun
|
|
node_modules/
|
|
dist/
|
|
.next/
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.pnpm-debug.log*
|
|
|
|
# Shell / build artifacts
|
|
*.tar.gz
|
|
*.zip
|
|
out/
|
|
build/
|
|
|
|
# Local env / secrets
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
*.local.json
|
|
secrets/
|