87 lines
1.1 KiB
Plaintext
87 lines
1.1 KiB
Plaintext
# Coffee Timer - Git Ignore File
|
|
# Excludes files and directories that shouldn't be tracked in version control
|
|
|
|
# Operating System Files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
desktop.ini
|
|
|
|
# Editor and IDE Files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.sublime-project
|
|
.sublime-workspace
|
|
|
|
# Temporary Files
|
|
*.tmp
|
|
*.temp
|
|
*.log
|
|
*.cache
|
|
*.bak
|
|
*.backup
|
|
*.old
|
|
|
|
# Node.js (if you ever add build tools)
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
package-lock.json
|
|
yarn.lock
|
|
|
|
# Build and Distribution Directories
|
|
dist/
|
|
build/
|
|
out/
|
|
.next/
|
|
.nuxt/
|
|
.output/
|
|
|
|
# Environment Files
|
|
.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# Deployment Files (optional - you might want to keep these)
|
|
# .coolify
|
|
# coolify-*.conf
|
|
# nginx.conf
|
|
# .htaccess
|
|
|
|
# Browser Testing
|
|
.browserlistrc
|
|
|
|
# Misc
|
|
*.zip
|
|
*.tar.gz
|
|
*.rar
|
|
*.7z
|
|
|
|
# Local development server logs
|
|
*.pid
|
|
*.seed
|
|
*.pid.lock
|
|
|
|
# Coverage directory used by tools like istanbul
|
|
coverage/
|
|
*.lcov
|
|
|
|
# Dependency directories
|
|
jspm_packages/
|
|
|
|
# Optional npm cache directory
|
|
.npm
|
|
|
|
# Optional eslint cache
|
|
.eslintcache
|