Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 32 additions & 12 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,22 +1,35 @@
# Dependencies
node_modules
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Build outputs
# Build artifacts
.next
out
dist
build

# Environment files
.env*.local
.env

# Development
# Git
.git
.gitignore
README.md
.github

# Environment files
.env*
!.env.example

# Documentation
*.md
docs
claudedocs

# Testing
coverage
.nyc_output
playwright-report
test-results
__tests__

# IDE
.vscode
Expand All @@ -25,10 +38,17 @@ docs
*.swo
*~

# Testing
coverage
.nyc_output
# OS
.DS_Store
Thumbs.db

# Terraform
terraform/.terraform
terraform/*.tfstate*
terraform/.terraform.lock.hcl

# Misc
.DS_Store
*.pem
*.log
.cache
temp
tmp
Loading