Files
hub/.dockerignore
kelly 6dd53f17ae ci: shallow clone (depth 1) + fix dockerignore for Dockerfile.fast
- Change git clone depth from 50 to 1 (faster checkout)
- Keep vendor/ and public/build/ in Docker context (needed by Dockerfile.fast)
2025-12-15 20:32:47 -07:00

67 lines
906 B
Plaintext

# Git
.git
.gitignore
.gitattributes
# Node
node_modules
npm-debug.log
yarn-error.log
# Composer (NOT excluded - Dockerfile.fast needs pre-built vendor)
# /vendor
# Environment
.env
.env.*
!.env.example
!.env.production.example
# IDE
.idea
.vscode
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
# Laravel
/storage/*.key
/storage/app/*
!/storage/app/.gitignore
/storage/framework/*
!/storage/framework/.gitignore
/storage/logs/*
!/storage/logs/.gitignore
/bootstrap/cache/*
!/bootstrap/cache/.gitignore
# Testing
/tests
/phpunit.xml
/.phpunit.cache
# Documentation
/docs
README.md
# Docker
docker-compose.yml
docker-compose.*.yml
!docker-compose.production.yml
# Keep Sail Dockerfile for local development
# Keep production configs for deployment
# Build artifacts
/public/hot
/public/storage
# /public/build - NOT excluded, Dockerfile.fast needs pre-built assets
# Misc
.env.backup
*.log
.php_cs.cache