Assist_Design/.gitignore
barsa 6e3626eff0 Enhance environment configuration and update package scripts
- Added .env.development to .gitignore for better environment management.
- Introduced new dev script in package.json for streamlined application development.
- Updated Prisma migration commands in docker-entrypoint.sh for improved schema handling.
- Enhanced logging configuration in logging.module.ts to support pretty logs based on environment.
- Refactored app.config.ts to prioritize environment file loading for better configuration management.
- Removed outdated test files and configurations to clean up the project structure.
2025-12-11 18:47:24 +09:00

158 lines
1.8 KiB
Plaintext

# Dependencies
node_modules/
.pnpm-store/
**/package-lock.json
# Environment files
.env
.env.local
.env.development
.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
**/.typecheck/
# 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/
!apps/portal/public/
!apps/portal/public/**
# Storybook build outputs
.out/
.storybook-out/
# Temporary folders
tmp/
temp/
# Build outputs and development artifacts
**/dist/
**/.next/
**/build/
**/*.tsbuildinfo
**/build-trace/
**/bundle-report.json
# Database
*.sqlite
*.db
# Docker - keep configs but ignore secrets
docker/portainer/stack.env
.build-logs/
# Prisma
prisma/migrations/dev.db*
# Large archive files
*.tar
*.tar.gz
*.zip
# API Documentation (contains sensitive API details)
docs/freebit-apis/