- Add .dockerignore to exclude node_modules, dist, and build artifacts - Add pre/post build directory listings to diagnose dist not found issue - Disable turbo cache temporarily with --force flag - Add --verbosity=2 for more detailed turbo output Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
59 lines
575 B
Plaintext
59 lines
575 B
Plaintext
# Dependencies (installed fresh in Docker)
|
|
node_modules
|
|
**/node_modules
|
|
|
|
# Build outputs (built fresh in Docker)
|
|
dist
|
|
**/dist
|
|
.next
|
|
**/.next
|
|
|
|
# TurboRepo cache
|
|
.turbo
|
|
**/.turbo
|
|
|
|
# IDE
|
|
.idea
|
|
.vscode
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Environment files
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Credentials
|
|
.admin-credentials
|
|
|
|
# Testing
|
|
coverage
|
|
**/coverage
|
|
|
|
# Logs
|
|
*.log
|
|
|
|
# Misc
|
|
*.tsbuildinfo
|
|
**/*.tsbuildinfo
|
|
.pnpm-approve-builds
|
|
.husky/_
|
|
|
|
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Docker
|
|
Dockerfile*
|
|
docker-compose*.yml
|
|
.dockerignore
|
|
|
|
# Documentation (not needed in container)
|
|
docs
|
|
*.md
|
|
!README.md
|