Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
71 changes: 13 additions & 58 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,69 +1,24 @@
# Virtual environment
venv/
.venv/
env/

# Environment and secrets
# Environment
.env
.env.local
*.pem
*.env.local
*.env.*.local

# Python
# Data
data/
__pycache__/
*.py[cod]
*$py.class
*.so
*.pyc
*.pyo
*.pyd
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
env/
venv/
.venv/

# IDE and editors
.idea/
# IDE
.vscode/
.idea/
*.swp
*.swo
*~

# Data and artifacts (keep structure, ignore large/sensitive)
data/raw/*
!data/raw/.gitkeep
!data/raw/README.md
data/processed/*
!data/processed/.gitkeep
!data/processed/README.md
data/embeddings/*
!data/embeddings/.gitkeep
!data/embeddings/README.md

# Jupyter
.ipynb_checkpoints/
*.ipynb_checkpoints

# Testing and coverage
.pytest_cache/
.coverage
htmlcov/

# Node.js (frontend)
node_modules/
frontend/dist/
frontend/node_modules/

# Cursor IDE
.cursor/

# OS
.DS_Store
Expand Down