Files
wace_plm/.gitignore
chpark da06c4684c Initial commit: WACE PLM with database initialization features
- Add Docker Compose configurations for dev, prod, and standalone environments
- Add database initialization scripts (init-db.sh, init-db-docker.sh)
- Add enhanced start-docker-linux.sh with DB init support
- Add comprehensive database initialization guide
- Support for automatic dbexport.pgsql import on first run
- Include safety checks for production environment
2025-08-29 15:46:08 +09:00

67 lines
676 B
Plaintext

# 환경 설정 파일
.env.*
!.env.*.example
# 로그 파일
logs/
*.log
# 백업 파일
backup_*.sql
*.bak
# IDE 설정
.vscode/
.idea/
*.swp
*.swo
# OS 생성 파일
.DS_Store
Thumbs.db
# 빌드 결과물
target/
build/
dist/
# 임시 파일
*.tmp
*.temp
# Docker 볼륨 데이터
postgres_data/
# 컴파일된 클래스 파일
*.class
# 패키지 파일
*.jar
*.war
*.ear
# Maven
target/
pom.xml.tag
pom.xml.releaseBackup
pom.xml.versionsBackup
pom.xml.next
release.properties
# 대용량 파일 (필요시 Git LFS 사용)
# db/dbexport.pgsql
# 쿠키 파일
cookies.txt
# 압축 파일
*.zip
*.tar.gz
*.rar
# 문서 임시 파일
~$*
# SVN 파일들
.svn/