File size: 985 Bytes
939c0c0 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | $base = 'c:\Users\punit\Desktop\Enterprise AI Copilot A Multi-Agent Platform for Intelligent Enterprise Automation'
$dirs = @(
'backend\app\api\v1',
'backend\app\core',
'backend\app\models',
'backend\app\schemas',
'backend\app\services',
'backend\app\middleware',
'backend\alembic\versions',
'agents',
'mcp\filesystem',
'mcp\postgres',
'mcp\github',
'services',
'tests\unit',
'tests\integration',
'monitoring\prometheus',
'monitoring\grafana\dashboards',
'docker\nginx',
'scripts',
'data\hr_policies',
'data\sales_data',
'data\sample_docs',
'.github\workflows',
'frontend\src\components\chat',
'frontend\src\components\layout',
'frontend\src\components\ui',
'frontend\src\pages',
'frontend\src\hooks',
'frontend\src\services',
'frontend\src\store',
'frontend\src\types'
)
foreach ($d in $dirs) {
New-Item -ItemType Directory -Force -Path (Join-Path $base $d) | Out-Null
}
Write-Host 'All directories created successfully.'
|