92 lines
915 B
Plaintext
92 lines
915 B
Plaintext
# Environment files
|
|
.env
|
|
.env.*
|
|
.env.local
|
|
.env.development
|
|
.env.production
|
|
.env.test
|
|
|
|
# Dependencies
|
|
node_modules/
|
|
vendor/
|
|
bower_components/
|
|
|
|
# Build outputs
|
|
dist/
|
|
build/
|
|
.next/
|
|
out/
|
|
.nuxt/
|
|
.cache/
|
|
.parcel-cache/
|
|
.vite/
|
|
|
|
# Logs
|
|
logs/
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
lerna-debug.log*
|
|
|
|
# Database files
|
|
*.sqlite
|
|
*.sqlite3
|
|
*.db
|
|
|
|
# Secrets and credentials
|
|
*.key
|
|
*.pem
|
|
*.cert
|
|
*.crt
|
|
secrets.json
|
|
credentials.json
|
|
|
|
# Coverage reports
|
|
coverage/
|
|
.nyc_output/
|
|
*.lcov
|
|
|
|
# Test artifacts
|
|
__tests__/__snapshots__/
|
|
.pytest_cache/
|
|
.jest/
|
|
|
|
# IDE and editor files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# CI/CD workflows
|
|
.github/workflows/
|
|
.gitea/workflows/
|
|
|
|
# Compiled files
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
__pycache__/
|
|
*.so
|
|
*.dll
|
|
*.dylib
|
|
*.exe
|
|
|
|
# Package manager files
|
|
package-lock.json
|
|
yarn.lock
|
|
pnpm-lock.yaml
|
|
|
|
# Docker
|
|
docker-compose.override.yml
|
|
|
|
# Large data files
|
|
*.csv
|
|
*.xlsx
|
|
*.zip
|
|
*.tar.gz
|
|
*.rar
|