.gitignore 495 B

1234567891011121314151617181920212223242526272829303132333435
  1. __pycache__/
  2. .DS_Store
  3. *.py[cod]
  4. *$py.class
  5. *.egg-info/
  6. .coverage
  7. coverage.xml
  8. htmlcov/
  9. test-results/
  10. *.result.json
  11. dist/
  12. build/
  13. .venv/
  14. .env
  15. .idea/
  16. .pytest_cache/
  17. .ruff_cache/
  18. *.log
  19. logs/
  20. tests/*
  21. !tests/__init__.py
  22. !tests/api/
  23. tests/api/*
  24. !tests/api/__init__.py
  25. !tests/api/test_demand_feedback.py
  26. !tests/supply_agent/
  27. !tests/supply_infra/
  28. tests/supply_infra/*
  29. !tests/supply_infra/__init__.py
  30. !tests/supply_infra/pipeline/
  31. !tests/supply_infra/scheduler/
  32. node_modules/
  33. web/dist/
  34. examples/
  35. skills/