File size: 343 Bytes
131da12 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | # Python ignores
**/__pycache__/
**/*.pyc
**/*.pyo
**/*.pyd
.Python
backend/venv/
backend/.env
backend/benchmark_results.csv
backend/benchmark_results_b.csv
backend/sentiment_log.md
backend/sentiment_log_b.md
# Node ignores
**/node_modules/
frontend/dist/
frontend/.env
.npm/
# Git ignores
.git/
.gitignore
# OS ignores
.DS_Store
Thumbs.db
|