Enterprise-AI-Copilot / scripts /create_dirs.ps1
Punit1's picture
Initial commit
939c0c0
Raw
History Blame Contribute Delete
985 Bytes
$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.'