- Change git clone depth from 50 to 1 (faster checkout) - Keep vendor/ and public/build/ in Docker context (needed by Dockerfile.fast)
67 lines
906 B
Plaintext
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
|