shj7972/bootstrap
0
1# --- Python build & cache ---2__pycache__/3*.py[cod]4*.pyo5*.pyd6*.so7*.egg-info/8.dist-info/9.pytest_cache/10.mypy_cache/11.ipynb_checkpoints/12 13# --- Virtualenv / Tools ---14.venv/15venv/16.env17.env.*18.python-version19 20# --- Editors / OS ---21.vscode/22.idea/23.DS_Store24Thumbs.db25 26# --- Project artifacts ---27rag_store/ # 생성된 인덱스(FAISS/메타) - 런타임 생성28logs/29tmp/30.cache/31cache/32dist/33build/34 35# --- Data (원시 데이터는 제외, 샘플 문서는 추적) ---36data/raw/37data/**/*.csv38data/**/*.parquet39data/**/*.jsonl40!data/docs/ # 샘플 문서는 추적 유지41 42# --- Models / Weights ---43*.pt44*.bin45*.ckpt46*.onnx47 48# --- Streamlit / Secrets ---49.streamlit/secrets.toml50 51# --- Node (혹시 사용 시) ---52node_modules/53 54# --- OS-specific backups ---55*.swp56*.swo57*.bak58 