fix: auto-detect jobspy venv so contributors don't need PYTHON_PATH (#293)

This commit is contained in:
0x1355
2026-03-20 08:18:27 +00:00
committed by GitHub
parent dc2c7ab2df
commit 7f517776df
2 changed files with 24 additions and 3 deletions
+9
View File
@@ -34,6 +34,15 @@ npm --workspace orchestrator run db:migrate
npm --workspace orchestrator run dev
```
If you are working with extractors that use Glassdoor, Indeed, or LinkedIn (powered by python-jobspy), set up the Python venv once:
```bash
python3 -m venv extractors/jobspy/.venv
extractors/jobspy/.venv/bin/pip install -r extractors/jobspy/requirements.txt
```
The runner auto-detects the venv — no need to set `PYTHON_PATH`.
If you are editing docs:
```bash