Bertonlome's picture
Add .gitignore to ignore .env and Images/
a695426
raw
history blame contribute delete
313 Bytes
# API Keys and secrets
.env
*.key
*.pem
# Images and binary files
Images/
*.png
*.jpg
*.jpeg
*.gif
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
*.egg-info/
dist/
build/
# Virtual environments
.venv/
venv/
ENV/
# IDE
.vscode/
.idea/
# OS
.DS_Store
Thumbs.db
# Local test files
test_*.py
*_test.py