AskIIIT / .gitignore
PrinceDeepakSiddharth12's picture
Upload 5 files
b74d423 verified
raw
history blame
820 Bytes
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
# Virtual Environment
.env
.venv
env/
venv/
ENV/
# Jupyter Notebook
.ipynb_checkpoints
*/.ipynb_checkpoints/*
# VS Code
.vscode/
*.code-workspace
# Environment variables
.env
# Model files and vectors
vectorDB/
embeddings/
*.bin
*.pkl
*.h5
*.faiss
*.index
# Logs
*.log
logs/
log/
# Data
data/
*.csv
*.json
*.xlsx
# Operating System
.DS_Store
Thumbs.db
# IDE specific files
.idea/
*.swp
*.swo
.spyderproject
.spyproject
# Large media files
*.jpg
*.jpeg
*.png
*.gif
*.pdf
*.mp4
*.mov
# Local development settings
local_settings.py
settings_local.py