47 lines
494 B
Plaintext
47 lines
494 B
Plaintext
# Operating System
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# IDEs
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Dependencies
|
|
node_modules/
|
|
package-lock.json
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
.pnpm-store/
|
|
|
|
# Build artifacts
|
|
dist/
|
|
build/
|
|
|
|
# SvelteKit / Vite
|
|
.svelte-kit/
|
|
.vite/
|
|
|
|
# Test outputs
|
|
test-results/
|
|
playwright-report/
|
|
coverage/
|
|
.playwright/
|
|
|
|
# Environment variables (NEVER commit secrets)
|
|
.env
|
|
.env.local
|
|
.env*.local
|
|
!.env.example
|
|
|
|
# Docker
|
|
docker-compose.override.yml
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|