- application-prod.yml을 .gitignore에서 제거, 환경변수 참조 방식으로 코드에 포함 - deploy.yml에 DB_PASSWORD secret 추가 - systemd에서 -Dspring.config.additional-location 제거 - 서버 외부 application-prod.yml 의존 해소
85 lines
1.2 KiB
Plaintext
85 lines
1.2 KiB
Plaintext
# === Build ===
|
|
dist/
|
|
build/
|
|
|
|
# === Dependencies ===
|
|
node_modules/
|
|
|
|
# === IDE ===
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# === OS ===
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# === Environment ===
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
secrets/
|
|
|
|
# === Test ===
|
|
coverage/
|
|
|
|
# === Cache ===
|
|
.eslintcache
|
|
.prettiercache
|
|
*.tsbuildinfo
|
|
|
|
# === Claude Code ===
|
|
# 글로벌 gitignore에서 .claude/ 전체를 무시하므로 팀 파일을 명시적으로 포함
|
|
!.claude/
|
|
.claude/settings.local.json
|
|
.claude/CLAUDE.local.md
|
|
# Team workflow (managed by /sync-team-workflow)
|
|
.claude/rules/
|
|
.claude/agents/
|
|
.claude/skills/push/
|
|
.claude/skills/mr/
|
|
.claude/skills/create-mr/
|
|
.claude/skills/release/
|
|
.claude/skills/version/
|
|
.claude/skills/fix-issue/
|
|
.claude/scripts/
|
|
|
|
# 프로젝트 기존 항목
|
|
# Logs
|
|
logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
lerna-debug.log*
|
|
node_modules
|
|
dist
|
|
dist-ssr
|
|
*.local
|
|
# Editor directories and files
|
|
.vscode/*
|
|
!.vscode/extensions.json
|
|
.idea
|
|
*.suo
|
|
*.ntvs*
|
|
*.njsproj
|
|
*.sln
|
|
*.sw?
|
|
*.pdf
|
|
|
|
# === Frontend ===
|
|
frontend/dist/
|
|
frontend/node_modules/
|
|
|
|
# === Backend ===
|
|
backend/target/
|
|
backend/.env
|
|
backend/src/main/resources/application-local.yml
|
|
|
|
# === Prediction ===
|
|
prediction/__pycache__/
|
|
prediction/venv/
|
|
prediction/.env
|