69 lines
656 B
Plaintext
69 lines
656 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
.pnpm-store/
|
|
.pnp.*
|
|
.yarn/
|
|
bower_components/
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
.venv/
|
|
venv/
|
|
env/
|
|
.python-version
|
|
*.egg-info/
|
|
.pytest_cache/
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
|
|
# Build output
|
|
dist/
|
|
build/
|
|
out/
|
|
target/
|
|
*.tsbuildinfo
|
|
|
|
# Environment / secrets
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
*.pem
|
|
*.key
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
|
|
# IDE / editor
|
|
.idea/
|
|
.vscode/*
|
|
!.vscode/settings.json
|
|
!.vscode/extensions.json
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
desktop.ini
|
|
|
|
# Coverage / cache
|
|
coverage/
|
|
.nyc_output/
|
|
.cache/
|
|
.parcel-cache/
|
|
.next/
|
|
.nuxt/
|
|
.turbo/
|
|
.svelte-kit/
|
|
|
|
# Misc
|
|
*.tmp
|
|
.tmp/
|