puffin-app/project/.dockerignore
Matt fe0c1c182f Restore project/ folder for comparison reference
- Restored legacy Vite application folder from git history
- Needed for comparing old vs new Next.js implementation
- Contains original component implementations and utilities
2025-11-03 14:23:42 +01:00

43 lines
510 B
Plaintext

# Version control files
.git
.gitignore
# Node.js dependencies
node_modules
npm-debug.log
yarn-error.log
# Build outputs
dist
# Docker files (to avoid recursive copying)
Dockerfile
Dockerfile.backend
docker-compose.yml
.dockerignore
# Environment files (we'll manage these separately)
.env
.env.*
!.env.example
# Editor directories and files
.vscode
.idea
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
# Testing files
coverage
**/__tests__
**/*.test.*
**/*.spec.*
# Other unnecessary files
README.md
LICENSE
*.md