65 lines
614 B
Plaintext
65 lines
614 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
|
|
# Virtual Environment
|
|
venv/
|
|
env/
|
|
ENV/
|
|
.venv
|
|
|
|
# Environment Variables (IMPORTANT - Contains API keys!)
|
|
.env
|
|
.env.*
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.sublime-*
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
Desktop.ini
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Database
|
|
*.db
|
|
*.sqlite*
|
|
|
|
# Streamlit
|
|
.streamlit/
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
temp/
|
|
tmp/
|
|
|
|
# Distribution
|
|
build/
|
|
dist/
|
|
*.egg-info/
|
|
|
|
# Testing
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# Documentation
|
|
docs/_build/
|
|
|
|
# Jupyter
|
|
.ipynb_checkpoints/
|
|
|
|
# Model files
|
|
*.pkl
|
|
*.pickle
|
|
|
|
# AGC Project Specific
|
|
# draft/ # Uncomment if you don't want to track draft folder |