276 lines
3.6 KiB
Plaintext
276 lines
3.6 KiB
Plaintext
# Dependencies
|
|
node_modules/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.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 (https://gruntjs.com/creating-plugins#storing-task-files)
|
|
.grunt
|
|
|
|
# Bower dependency directory (https://bower.io/)
|
|
bower_components
|
|
|
|
# node-waf configuration
|
|
.lock-wscript
|
|
|
|
# Compiled binary addons (https://nodejs.org/api/addons.html)
|
|
build/Release
|
|
|
|
# Dependency directories
|
|
jspm_packages/
|
|
|
|
# TypeScript cache
|
|
*.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
|
|
|
|
# dotenv environment variables file
|
|
.env
|
|
.env.test
|
|
.env.local
|
|
.env.production
|
|
|
|
# parcel-bundler cache (https://parceljs.org/)
|
|
.cache
|
|
.parcel-cache
|
|
|
|
# Next.js build output
|
|
.next
|
|
|
|
# Nuxt.js build / generate output
|
|
.nuxt
|
|
dist
|
|
|
|
# Gatsby files
|
|
.cache/
|
|
public
|
|
|
|
# Storybook build outputs
|
|
.out
|
|
.storybook-out
|
|
|
|
# Temporary folders
|
|
tmp/
|
|
temp/
|
|
|
|
# Logs
|
|
logs
|
|
*.log
|
|
|
|
# Runtime data
|
|
pids
|
|
*.pid
|
|
*.seed
|
|
*.pid.lock
|
|
|
|
# Directory for instrumented libs generated by jscoverage/JSCover
|
|
lib-cov
|
|
|
|
# Coverage directory used by tools like istanbul
|
|
coverage
|
|
|
|
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
|
|
.grunt
|
|
|
|
# Bower dependency directory (https://bower.io/)
|
|
bower_components
|
|
|
|
# node-waf configuration
|
|
.lock-wscript
|
|
|
|
# Compiled binary addons (https://nodejs.org/api/addons.html)
|
|
build/Release
|
|
|
|
# Dependency directories
|
|
node_modules/
|
|
jspm_packages/
|
|
|
|
# Optional npm cache directory
|
|
.npm
|
|
|
|
# Optional eslint cache
|
|
.eslintcache
|
|
|
|
# Optional REPL history
|
|
.node_repl_history
|
|
|
|
# Output of 'npm pack'
|
|
*.tgz
|
|
|
|
# Yarn Integrity file
|
|
.yarn-integrity
|
|
|
|
# dotenv environment variables file
|
|
.env
|
|
|
|
# IDE files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Prisma
|
|
prisma/migrations/
|
|
|
|
# Build outputs
|
|
dist/
|
|
build/
|
|
|
|
# Test coverage
|
|
coverage/
|
|
|
|
# ===== 민감한 정보 보호 =====
|
|
|
|
# 데이터베이스 연결 정보
|
|
backend-node/.env
|
|
backend-node/.env.local
|
|
backend-node/.env.development
|
|
backend-node/.env.production
|
|
backend-node/.env.test
|
|
|
|
# 백엔드 환경 변수
|
|
backend/.env
|
|
backend/.env.local
|
|
backend/.env.development
|
|
backend/.env.production
|
|
backend/.env.test
|
|
|
|
# 프론트엔드 환경 변수
|
|
frontend/.env
|
|
frontend/.env.local
|
|
frontend/.env.development
|
|
frontend/.env.production
|
|
frontend/.env.test
|
|
|
|
# Docker 관련 민감 정보
|
|
docker-compose.override.yml
|
|
docker-compose.prod.yml
|
|
.env.docker
|
|
|
|
# 설정 파일들
|
|
configs/
|
|
settings/
|
|
*.config.js
|
|
*.config.ts
|
|
*.config.json
|
|
|
|
# 로그 파일들
|
|
*.log
|
|
logs/
|
|
log/
|
|
|
|
# 임시 파일들
|
|
*.tmp
|
|
*.temp
|
|
temp/
|
|
tmp/
|
|
|
|
# 백업 파일들
|
|
*.bak
|
|
*.backup
|
|
*.old
|
|
backup/
|
|
|
|
# 키 파일들
|
|
*.key
|
|
*.pem
|
|
*.p12
|
|
*.pfx
|
|
*.crt
|
|
*.cert
|
|
|
|
# API 키 및 토큰
|
|
secrets/
|
|
secrets.json
|
|
secrets.yaml
|
|
secrets.yml
|
|
api-keys.json
|
|
tokens.json
|
|
|
|
# 데이터베이스 덤프 파일
|
|
*.sql
|
|
*.dump
|
|
*.backup
|
|
db/dump/
|
|
db/backup/
|
|
|
|
# 캐시 파일들
|
|
.cache/
|
|
cache/
|
|
*.cache
|
|
|
|
# 사용자별 설정
|
|
.vscode/settings.json
|
|
.idea/workspace.xml
|
|
*.user
|
|
|
|
# ===== Gradle 관련 파일들 (레거시 Java 프로젝트) =====
|
|
# Gradle 캐시 및 빌드 파일들
|
|
.gradle/
|
|
*/.gradle/
|
|
gradle/
|
|
gradlew
|
|
gradlew.bat
|
|
gradle.properties
|
|
build/
|
|
*/build/
|
|
|
|
# Gradle Wrapper
|
|
gradle-wrapper.jar
|
|
gradle-wrapper.properties
|
|
|
|
# IntelliJ IDEA 관련 (Gradle 프로젝트)
|
|
.idea/
|
|
*.iml
|
|
*.ipr
|
|
*.iws
|
|
out/
|
|
|
|
# Eclipse 관련 (Gradle 프로젝트)
|
|
.project
|
|
.classpath
|
|
.settings/
|
|
bin/
|