fix: Applied fix for name, the oracle team sharing, sentinel client list visibility

This commit is contained in:
Sagnik
2026-04-19 17:07:12 +05:30
parent 269591a3cc
commit d886e4a669
20 changed files with 940 additions and 109 deletions

View File

@@ -0,0 +1,15 @@
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
}