HNTAI / scripts /run_local.ps1
sachinchandrankallar's picture
Introduce AI medical extraction service with new API, agents, comprehensive testing, and documentation, while reorganizing existing scripts.
d7f1bb5
Raw
History Blame
251 Bytes
Param(
[switch]$Build
)
Set-Location -Path (Split-Path -Parent $MyInvocation.MyCommand.Definition)
if ($Build) {
docker compose build
}
docker compose up -d
Write-Host "ai-service is starting. Use 'docker compose logs -f' to follow logs."