@@ -25,7 +25,6 @@ This application consists of **two separate services** that run independently:
2525``` bash
2626document-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
473470New-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