- anipharm_api.py: 동물약 PDF 생성 API 추가 - data/master/*.json: 16종 마스터 데이터 업데이트 - templates: medication_guide_v2, 로고 추가 - docs: AI 매핑 아키텍처, API 스펙 문서 - .gitignore: _dev_scripts/, *.db 제외 추가 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
25 lines
196 B
Plaintext
25 lines
196 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.egg-info/
|
|
.eggs/
|
|
dist/
|
|
build/
|
|
venv/
|
|
.env
|
|
|
|
# Output
|
|
output/
|
|
*.pdf
|
|
*.png
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
|
|
# 런타임 DB
|
|
*.db
|
|
|
|
# 개발/디버깅 스크립트
|
|
_dev_scripts/
|