xtablo-source/.dockerignore

50 lines
617 B
Text
Raw Permalink Normal View History

2025-11-14 22:10:04 +00:00
# Following pnpm Docker best practices: https://pnpm.io/docker
# Dependencies (will be installed in container)
2025-11-13 21:29:47 +00:00
node_modules
.pnpm-store
2025-11-14 22:10:04 +00:00
# Build outputs (will be built in container)
2025-11-13 21:29:47 +00:00
**/dist
2025-11-14 22:10:04 +00:00
# Git
.git
.gitignore
*.md
# Testing (not needed in production)
2025-11-13 21:29:47 +00:00
**/__tests__
**/*.test.ts
**/*.test.js
**/*.spec.ts
**/*.spec.js
**/coverage
**/.vitest
# Development files
**/*.log
**/.DS_Store
**/npm-debug.log*
**/yarn-debug.log*
**/pnpm-debug.log*
# IDE
**/.idea
**/.vscode
**/.vs
**/*.swp
**/*.swo
# CI/CD
.github
**/cloudbuild.yaml
# Misc
**/.turbo
**/tsconfig.tsbuildinfo
**/.cache
**/tmp
**/temp
2025-11-14 22:10:04 +00:00
**/.next
**/.nuxt