16 lines
311 B
PowerShell
16 lines
311 B
PowerShell
param(
|
|
[string]$RepoRoot = "F:\Workin In Progress\DESINEURON\GITLAB\Project_Velocity"
|
|
)
|
|
|
|
$ErrorActionPreference = "Stop"
|
|
|
|
$env:VITE_BACKEND_PROXY_TARGET = "http://127.0.0.1:8001"
|
|
|
|
Push-Location (Join-Path $RepoRoot "app")
|
|
try {
|
|
npm run dev -- --host 127.0.0.1 --port 5173
|
|
}
|
|
finally {
|
|
Pop-Location
|
|
}
|