Compare commits

...

2 Commits

11 changed files with 67 additions and 0 deletions

67
.gitignore vendored Normal file
View File

@@ -0,0 +1,67 @@
# 환경 설정 파일
.env.*
!.env.*.example
!.env.production
# 로그 파일
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/

0
compile_only.sh Normal file → Executable file
View File

0
db/00-create-roles.sh Normal file → Executable file
View File

0
dev_git_only.sh Normal file → Executable file
View File

0
init-db-docker.sh Normal file → Executable file
View File

0
init-db.sh Normal file → Executable file
View File

0
setup.sh Normal file → Executable file
View File

0
start-dev-full-win.sh Normal file → Executable file
View File

0
start-dev-full.sh Normal file → Executable file
View File

0
start-devlocal-full.sh Normal file → Executable file
View File

0
start-prod-full.sh Normal file → Executable file
View File