동작하는 최소 코드 수준의 v2 스캐폴딩: - docker-compose.yml: postgres, fastapi, kordoc, frontend, caddy - app/: FastAPI 백엔드 (main, core, models, ai, prompts) - services/kordoc/: Node.js 문서 파싱 마이크로서비스 - gpu-server/: AI Gateway + GPU docker-compose - frontend/: SvelteKit 기본 구조 - migrations/: PostgreSQL 초기 스키마 (documents, tasks, processing_queue) - tests/: pytest conftest 기본 설정 - config.yaml, Caddyfile, credentials.env.example 갱신 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
34 lines
323 B
Plaintext
34 lines
323 B
Plaintext
# 인증 정보 (절대 커밋 금지)
|
|
credentials.env
|
|
|
|
# Python
|
|
venv/
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
|
|
# 로그
|
|
logs/
|
|
|
|
# 데이터 (법령 다운로드 등)
|
|
data/
|
|
|
|
# macOS
|
|
.DS_Store
|
|
._*
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
|
|
# Node.js (frontend, kordoc)
|
|
node_modules/
|
|
.svelte-kit/
|
|
|
|
# Docker volumes
|
|
pgdata/
|
|
caddy_data/
|