Files
yourwillyourwish/.dockerignore
2026-02-06 21:44:04 -06:00

69 lines
883 B
Plaintext

# Dependencies
node_modules
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Build outputs
.next
out
dist
build
# Testing
coverage
.nyc_output
# Environment files (should be provided at runtime)
.env
.env.local
.env.development
.env.production
.env.test
# Git
.git
.gitignore
.github
# IDE
.vscode
.idea
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
# Misc
*.md
!README.md
.prettierrc
.eslintrc*
.editorconfig
# IMPORTANT: Allow Prisma migrations!
!prisma/migrations/**/*.sql
# Docker
Dockerfile
docker-compose*.yml
.dockerignore
# Logs
logs
*.log
# Duplicates at bottom - cleaned up
# node_modules <- already excluded at top
# .next <- already excluded at top
# .git <- already excluded at top
# .gitignore <- already excluded at top
# Dockerfile <- already excluded at top
# docker-compose.yml <- already excluded at top
# .env <- already excluded at top
npm-debug.log