This commit is contained in:
LASTA_DEV01\lasta
2026-05-13 19:57:34 +09:00
parent 2e9204243d
commit 9e88f4c7ad
4310 changed files with 48538 additions and 905279 deletions

83
ontology_platform/.gitignore vendored Normal file
View File

@@ -0,0 +1,83 @@
# ─── Python ─────────────────────────────────────────────────────────
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
.venv/
venv/
env/
*.egg-info/
*.egg
dist/
build/
.eggs/
# ─── 가상환경 / 패키지 매니저 ───────────────────────────────────────
.pyenv/
poetry.lock
uv.lock
pip-log.txt
# ─── IDE ────────────────────────────────────────────────────────────
.idea/
.vscode/
*.swp
*.swo
.DS_Store
# ─── 환경변수 / 비밀 ────────────────────────────────────────────────
.env
.env.local
.env.*.local
*.key
*.pem
secrets/
# ─── 테스트 / 커버리지 ──────────────────────────────────────────────
.pytest_cache/
.coverage
.coverage.*
htmlcov/
.tox/
.nox/
.mypy_cache/
.ruff_cache/
.hypothesis/
# ─── 로그 / 임시 / 데이터 ───────────────────────────────────────────
*.log
logs/
tmp/
temp/
data/working/
data/cache/
data/raw/
data/artifacts/
# ─── 데이터베이스 ───────────────────────────────────────────────────
*.db
*.sqlite
*.sqlite3
# ─── 모델 / 임베딩 / 큰 파일 ────────────────────────────────────────
models/
*.bin
*.pt
*.onnx
# ─── Docker ─────────────────────────────────────────────────────────
docker-compose.override.yml
# ─── 산출물 ─────────────────────────────────────────────────────────
*.ttl
*.rdf
*.nt
*.jsonld
# 단, tests/fixtures/ 아래는 추적
!tests/fixtures/**/*.ttl
!tests/fixtures/**/*.rdf
# ─── OS ─────────────────────────────────────────────────────────────
Thumbs.db
Desktop.ini