Spaces:
Runtime error
Runtime error
sourabh gupta
feat(ops): add all-in-one start and stop orchestrator scripts for local development
032f23b | .PHONY: install healthcheck seed eval api stop-api openapi clean | |
| # ββ Setup βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ | |
| install: | |
| pip install -e packages/vantage_core | |
| pip install -r apps/api/requirements.txt | |
| # ββ Phase 1: verify all external services are reachable βββββββββββββββββββββββ | |
| healthcheck: | |
| python3.11 scripts/healthcheck.py | |
| # ββ Phase 2β7: populate Qdrant + Neo4j end-to-end (idempotent) βββββββββββββββ | |
| seed: | |
| python3.11 scripts/ingest.py | |
| python3.11 scripts/build_graph.py | |
| python3.11 scripts/compute_gaps.py | |
| # ββ Phase 11: run evaluation harness βββββββββββββββββββββββββββββββββββββββββ | |
| eval: | |
| python3.11 eval/run_eval.py | |
| # ββ Services Orchestration ββββββββββββββββββββββββββββββββββββββββββββββββββββ | |
| start: | |
| bash start.sh | |
| stop: | |
| bash stop.sh | |
| api: start | |
| stop-api: stop | |
| openapi: | |
| python3.11 scripts/export_openapi.py | |
| # ββ Housekeeping ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ | |
| clean: | |
| find . -type d -name __pycache__ -exec rm -rf {} + 2>/dev/null || true | |
| find . -type f -name "*.pyc" -delete 2>/dev/null || true | |