# Ignore node_modules and build directories node_modules dist build # Ignore logs npm-debug.log* yarn-debug.log* yarn-error.log* pnpm-debug.log* # Ignore local environment files .env .env.local .env.*.local # Ignore Dockerfile and Docker Compose files Dockerfile docker-compose.yml # Ignore git files .git .gitignore # Ignore IDE and editor settings .vscode/ .idea/ # Ignore tests and documentation __tests__/ test/ tests/ spec/ *.md # Ignore temporary files *.swp *.swo *.DS_Store *.log *.lock *.tmp # Ignore coverage output coverage