75 lines
2.0 KiB
Plaintext
75 lines
2.0 KiB
Plaintext
# ============================================================
|
|
# Goondex: Large / Sensitive Data Exclusions
|
|
# ============================================================
|
|
|
|
# ============================================================
|
|
# 🖼️ Gallery Assets
|
|
# ------------------------------------------------------------
|
|
# Exclude all image and video content from galleries.
|
|
# Keep only metadata.json and tag YAMLs for database integrity.
|
|
# ============================================================
|
|
Galleries/**/*.jpg
|
|
Galleries/**/*.jpeg
|
|
Galleries/**/*.png
|
|
Galleries/**/*.gif
|
|
Galleries/**/*.webp
|
|
Galleries/**/*.mp4
|
|
Galleries/**/*.mov
|
|
Galleries/**/*.avi
|
|
Galleries/**/*.mkv
|
|
Galleries/**/*.zip
|
|
Galleries/**/*.tar
|
|
|
|
# Keep metadata and tag files
|
|
!Galleries/**/metadata.json
|
|
!Galleries/**/tags.yaml
|
|
!Galleries/README.md
|
|
|
|
# ============================================================
|
|
# 🧠 Machine Learning Artifacts
|
|
# ------------------------------------------------------------
|
|
# Model weights, generated outputs, and cached intermediate data.
|
|
# ============================================================
|
|
src/ml/models/*.pth
|
|
src/ml/outputs/**
|
|
src/ml/cache/**
|
|
src/ml/__pycache__/
|
|
src/ml/__pycache__/*
|
|
|
|
# ============================================================
|
|
# 🧰 Build / Environment Files
|
|
# ------------------------------------------------------------
|
|
# Prevent committing environment-specific or temporary files.
|
|
# ============================================================
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
*.log
|
|
*.tmp
|
|
*.bak
|
|
*.swp
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
env/
|
|
venv/
|
|
|
|
# ============================================================
|
|
# 🧱 Project-Level Exclusions
|
|
# ------------------------------------------------------------
|
|
# Prevent committing local configurations or system files.
|
|
# ============================================================
|
|
.DS_Store
|
|
Thumbs.db
|
|
.idea/
|
|
.vscode/
|
|
*.iml
|
|
|
|
# ============================================================
|
|
# 🧾 Dependency and Build Outputs
|
|
# ============================================================
|
|
*.egg-info/
|
|
build/
|
|
dist/
|