Skip to content

Commit 1953136

Browse files
local deployment setup
1 parent 49bce9e commit 1953136

1 file changed

Lines changed: 17 additions & 2 deletions

File tree

docs/LocalDevelopmentSetup.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,15 @@ poetry export -o requirements.txt
355355
pip install -r requirements.txt
356356
```
357357

358-
> **📋 Note**: The batch function shares the same dependencies managed by the root `pyproject.toml`. No separate installation is needed for the batch function.
358+
### 6.2. Install Batch Function Dependencies
359+
360+
```bash
361+
# Navigate to batch directory
362+
cd batch
363+
364+
# Install dependencies
365+
pip install -r requirements.txt
366+
```
359367

360368
### 6.3. Alternative: Use Setup Script
361369

@@ -584,7 +592,14 @@ Copy-Item ..\..\..\.azure\<env-name>\.env . # Windows PowerShell
584592

585593
> **⚠️ Important**: Replace `<env-name>` with your actual azd environment name. You can find it by running `azd env list`.
586594
587-
### 10.2. Run the Batch Function
595+
### 10.2. Install Batch Function Dependencies
596+
597+
```bash
598+
# Make sure you're in code/backend/batch directory
599+
pip install -r requirements.txt
600+
```
601+
602+
### 10.3. Run the Batch Function
588603

589604
#### Option A: Using Azure Functions Core Tools (Command Line)
590605

0 commit comments

Comments
 (0)