- .gitea/workflows/deploy.yml: main merge 시 frontend/backend 자동 빌드·배포 - deploy/kcg-backend.service: systemd 서비스 (JDK 17, 2~4GB 힙) - deploy/nginx-kcg.conf: SSL + SPA 서빙 + API 프록시 + 외부 API CORS 프록시 - .githooks/pre-commit: 모노레포 대응 (frontend tsc+eslint, backend mvn compile) - .gitignore: frontend/backend/prediction 각각 빌드 산출물 추가 - CLAUDE.md: 모노레포 구조 반영 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
86 lines
1.2 KiB
Plaintext
86 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
|
|
backend/src/main/resources/application-prod.yml
|
|
|
|
# === Prediction ===
|
|
prediction/__pycache__/
|
|
prediction/venv/
|
|
prediction/.env
|