.gitignore 822 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. # Python cache and local interpreter output
  2. __pycache__/
  3. *.py[cod]
  4. *$py.class
  5. # Local shell / notebook history
  6. .Rhistory
  7. .python_history
  8. # Runtime artifacts
  9. runs/
  10. logs/
  11. backups/
  12. archives/
  13. .tmp/
  14. tmp/
  15. *.tmp
  16. *.log
  17. *.jsonl
  18. *.sent-log.jsonl
  19. # Generated previews and candidate data
  20. *preview*.json
  21. *preview*.html
  22. *candidate*.json
  23. *scraped*.json
  24. *selected*.json
  25. *results*.json
  26. *status_updates*.json
  27. *verification*.txt
  28. *_report.json
  29. # Local customer workbooks and backups
  30. ~$*.xlsx
  31. *_backup_*.xlsx
  32. *backup_before*.xlsx
  33. *客户建联表*.xlsx
  34. *客户信息*.xlsx
  35. *重点客户*.xlsx
  36. !assets/blank_customer_outreach_workbook.xlsx
  37. # Local credentials and real sync config
  38. .env
  39. .env.*
  40. feishu_sync_config.json
  41. dashboard_config.json
  42. *credential*
  43. *secret*
  44. *token*
  45. # Packaged release archives should be created outside the repo
  46. *.zip