Assist_Design/.gitignore
T. Narantuya 4d0baed4b2 Update Plesk environment configuration and enhance Docker setup
- Added detailed instructions for Plesk deployment in `.env.plesk` and `compose-plesk.yaml`.
- Updated `.gitignore` to exclude Docker-related files.
- Enhanced Dockerfiles for both frontend and backend to optimize for Plesk deployment.
- Refined TypeScript configurations across various files for improved module resolution and compatibility.
- Removed obsolete logger fixes summary file to streamline documentation.
2025-09-01 15:11:42 +09:00

148 lines
1.6 KiB
Plaintext

# Dependencies
node_modules/
.pnpm-store/
# Environment files
.env
.env.local
.env.production
.env.test
# Security - Never commit secrets!
secrets/
*.key
*.pem
*.p12
*.pfx
# Build outputs
dist/
build/
.next/
# Cache directories
.turbo/
.cache/
# IDE and editor files
.vscode/
.idea/
*.swp
*.swo
*~
# OS generated files
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db
# Logs
logs/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
# Runtime data
pids/
*.pid
*.seed
*.pid.lock
# Coverage directory used by tools like istanbul
coverage/
*.lcov
# nyc test coverage
.nyc_output/
# Grunt intermediate storage
.grunt/
# Bower dependency directory
bower_components/
# node-waf configuration
.lock-wscript
# Compiled binary addons
build/Release/
# Dependency directories
jspm_packages/
# TypeScript cache
*.tsbuildinfo
**/tsconfig.tsbuildinfo
# Optional npm cache directory
.npm/
# Optional eslint cache
.eslintcache
# Microbundle cache
.rpt2_cache/
.rts2_cache_cjs/
.rts2_cache_es/
.rts2_cache_umd/
# Optional REPL history
.node_repl_history
# Output of 'npm pack'
*.tgz
# Yarn Integrity file
.yarn-integrity
# parcel-bundler cache
.parcel-cache/
# Next.js build output
.next/
out/
# Nuxt.js build / generate output
.nuxt/
dist/
# Gatsby files
.cache/
public/
# Storybook build outputs
.out/
.storybook-out/
# Temporary folders
tmp/
temp/
# Build outputs and development artifacts
**/dist/
**/.next/
**/build/
**/*.tsbuildinfo
# Database
*.sqlite
*.db
# Docker
.dockerignore
docker/
# Prisma
prisma/migrations/dev.db*
# Large archive files
*.tar
*.tar.gz
*.zip