108 lines
1.2 KiB
Plaintext
108 lines
1.2 KiB
Plaintext
# Node modules and vendor directories
|
|
node_modules/
|
|
|
|
# Ignore vendor only if dependencies are installed during the build
|
|
# Uncomment the next line if vendor is installed in the Dockerfile
|
|
# vendor/
|
|
|
|
# Environment files
|
|
.env.local
|
|
.env.development
|
|
.env.production
|
|
.env.test
|
|
.env.example
|
|
|
|
# Log files
|
|
*.log
|
|
logs/
|
|
storage/logs/
|
|
|
|
# Temporary files and directories
|
|
tmp/
|
|
*.tmp
|
|
*.swp
|
|
*.swo
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Build artifacts
|
|
build/
|
|
dist/
|
|
public/hot
|
|
public/storage
|
|
storage/debugbar
|
|
storage/framework/cache/*
|
|
storage/framework/sessions/*
|
|
storage/framework/testing/*
|
|
storage/framework/views/*
|
|
|
|
# Test and coverage files
|
|
tests/
|
|
coverage/
|
|
*.cover
|
|
*.coverage
|
|
*.lcov
|
|
|
|
# IDE/editor-specific files
|
|
.idea/
|
|
.vscode/
|
|
*.code-workspace
|
|
|
|
# Git files
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# Docker-related files
|
|
.dockerignore
|
|
docker-compose.override.yml
|
|
|
|
# CI/CD configuration files
|
|
.github/
|
|
.gitlab-ci.yml
|
|
.circleci/
|
|
.travis.yml
|
|
|
|
# Miscellaneous files
|
|
*.bak
|
|
*.backup
|
|
*.old
|
|
*.orig
|
|
*.save
|
|
*.cache
|
|
*.pid
|
|
*.seed
|
|
*.swp
|
|
*.swo
|
|
*.tmp
|
|
*.md
|
|
|
|
|
|
/tests
|
|
/.vscode
|
|
/.idea
|
|
/.git
|
|
/.github
|
|
|
|
*.log
|
|
*.tmp
|
|
*.bak
|
|
*.swp
|
|
*.swo
|
|
|
|
.DS_Store
|
|
Thumbs.db
|
|
Desktop.ini
|
|
|
|
*.sql
|
|
*.pgsql
|
|
*.sqlite
|
|
*.tar.gz
|
|
*.zip
|
|
*.tar
|
|
*.gz
|
|
|
|
/.htaccess
|
|
/nginx.conf
|
|
/.docker/
|