Skip to content

Commit a982427

Browse files
KaliszWiktoriaPaulina-Kimakp-zakdlemiech
authored
Co-authored-by: Paulina Kimak <paulina.kimak@intel.com> Co-authored-by: Zak, Pawel <pawel.zak@intel.com> Co-authored-by: dlemiech <dariusz.lemiech@intel.com>
1 parent 03464b0 commit a982427

23 files changed

Lines changed: 3592 additions & 153 deletions

File tree

tools/visual-pipeline-and-platform-evaluation-tool/compose.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,8 @@ services:
9898
vippet: # Always 'vippet', hardware config from override files
9999
<<: *vippet
100100
container_name: vippet
101+
ports:
102+
- "7860:7860"
101103
collector:
102104
image: docker.io/intel/vippet-collector:${DOCKER_TAG}
103105
build:
@@ -186,3 +188,5 @@ services:
186188
http_proxy: ${http_proxy}
187189
https_proxy: ${https_proxy}
188190
no_proxy: ${no_proxy}
191+
192+

tools/visual-pipeline-and-platform-evaluation-tool/ui/eslint.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import prettierPlugin from "eslint-plugin-prettier";
88
import prettierConfig from "eslint-config-prettier";
99

1010
export default defineConfig([
11-
globalIgnores(["dist"]),
11+
globalIgnores(["dist", "src/api/api.generated.ts"]),
1212
{
1313
files: ["**/*.{ts,tsx,js,jsx}"],
1414
extends: [

tools/visual-pipeline-and-platform-evaluation-tool/ui/nginx.conf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ server {
5353
}
5454

5555
# MediaMTX stream paths and WHEP/WHIP endpoints
56-
location ~ ^/(stream_[^/]+)/(whep|whip)(/.*)?$ {
56+
# Supports both old format (stream_uuid) and new format (stream-pipelines-...)
57+
location ~ ^/(stream[_-][^/]+)/(whep|whip)(/.*)?$ {
5758
proxy_pass http://mediamtx:8889/$1/$2$3;
5859
proxy_set_header Host $host;
5960
proxy_set_header X-Real-IP $remote_addr;

tools/visual-pipeline-and-platform-evaluation-tool/ui/package-lock.json

Lines changed: 124 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tools/visual-pipeline-and-platform-evaluation-tool/ui/package.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@
3030
"clsx": "^2.1.1",
3131
"dagre": "^0.8.5",
3232
"date-fns": "^4.1.0",
33+
"framer-motion": "^12.29.2",
3334
"lucide-react": "^0.548.0",
35+
"motion": "^12.27.5",
3436
"next-themes": "^0.4.6",
3537
"radix-ui": "^1.4.3",
3638
"react": "^19.1.1",

0 commit comments

Comments
 (0)