Skip to content

Commit 3d95292

Browse files
docs: Remove references to Python virtual environment and node_modules from setup guide
1 parent 94bf81e commit 3d95292

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

docs/LocalDevelopmentSetup.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ This application consists of **two separate services** that run independently:
2525
```bash
2626
document-generation-solution-accelerator/ ← Repository root (start here)
2727
├── src/
28-
│ ├── .venv/ ← Python virtual environment
2928
│ ├── backend/
3029
│ │ ├── api/ ← API endpoints and routes
3130
│ │ ├── auth/ ← Authentication modules
@@ -34,7 +33,6 @@ document-generation-solution-accelerator/ ← Repository root (start here)
3433
│ │ ├── security/ ← Security-related modules
3534
│ │ └── settings.py ← Backend configuration
3635
│ ├── frontend/
37-
│ │ ├── node_modules/
3836
│ │ ├── src/ ← React/TypeScript source
3937
│ │ └── package.json ← Frontend dependencies
4038
│ ├── static/ ← Static web assets
@@ -49,7 +47,6 @@ document-generation-solution-accelerator/ ← Repository root (start here)
4947
│ └── config.json ← Scripts configuration
5048
├── infra/
5149
│ ├── main.bicep ← Main infrastructure template
52-
│ ├── modules/ ← Bicep modules
5350
│ ├── scripts/ ← Infrastructure scripts
5451
│ └── main.parameters.json ← Deployment parameters
5552
├── docs/ ← Documentation (you are here)
@@ -473,7 +470,7 @@ Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
473470
New-ItemProperty -Path "HKLM:\SYSTEM\CurrentControlSet\Control\FileSystem" -Name "LongPathsEnabled" -Value 1 -PropertyType DWORD -Force
474471
475472
# SSL certificate issues
476-
pip install --trusted-host pypi.org --trusted-host pypi.python.org --trusted-host files.pythonhosted.org uv
473+
python -m pip install uv
477474
```
478475

479476
### Azure Authentication Issues

0 commit comments

Comments
 (0)