ibuilder / .gitIgnore
Soufianesejjari's picture
Add .gitignore to exclude environment files and Python cache
ca85905
raw
history blame contribute delete
156 Bytes
# Ignore environment files
.env
*.env
# Ignore Python cache directories
__pycache__/
*.pyc
*.pyo
*.pyd
# Ignore virtual environment directories
venv/
env/