SegVision / .gitignore
Indrajit Ari
Initial commit β€” SegVision Video Segmentation App
dbced4f
Raw
History Blame Contribute Delete
2.14 kB
# ─── Python ───────────────────────────────────────────────────────────────────
__pycache__/
*.py[cod]
*.pyo
*.pyd
.Python
*.egg
*.egg-info/
dist/
build/
.eggs/
# Virtual envs
.venv/
venv/
env/
ENV/
# ─── Node / Next.js ───────────────────────────────────────────────────────────
node_modules/
.next/
out/
.npm
*.tsbuildinfo
next-env.d.ts
# ─── ML / Data ────────────────────────────────────────────────────────────────
*.pt
*.pth
*.onnx
*.h5
*.pkl
*.npy
*.npz
/tmp/
uploads/
outputs/
# ─── Environment / Secrets ────────────────────────────────────────────────────
.env
.env.local
.env.*.local
*.env
# ─── OS ───────────────────────────────────────────────────────────────────────
.DS_Store
.DS_Store?
._*
Thumbs.db
# ─── Logs ─────────────────────────────────────────────────────────────────────
*.log
logs/
celery_worker.log
# ─── Docker ───────────────────────────────────────────────────────────────────
docker-compose.override.yml
# ─── IDE ──────────────────────────────────────────────────────────────────────
.idea/
.vscode/
*.swp
*.swo