mirror of
https://github.com/MadsLorentzen/ai-job-search.git
synced 2026-09-17 00:26:26 +00:00
docs: add PowerShell install loop (#69)
This commit is contained in:
@@ -57,6 +57,19 @@ cd ai-job-search
|
||||
|
||||
### 2. Install job search tools
|
||||
|
||||
PowerShell:
|
||||
|
||||
```powershell
|
||||
$tools = @("jobbank-search", "jobdanmark-search", "jobindex-search", "jobnet-search", "linkedin-search")
|
||||
foreach ($tool in $tools) {
|
||||
Set-Location ".agents/skills/$tool/cli"
|
||||
bun install
|
||||
Set-Location "..\..\..\.."
|
||||
}
|
||||
```
|
||||
|
||||
Bash / zsh / Git Bash:
|
||||
|
||||
```bash
|
||||
cd .agents/skills/jobbank-search/cli && bun install && cd ../../../..
|
||||
cd .agents/skills/jobdanmark-search/cli && bun install && cd ../../../..
|
||||
|
||||
Reference in New Issue
Block a user