mirror of
https://github.com/ruvnet/RuVector.git
synced 2026-05-22 11:26:34 +00:00
4D Gaussian splatting demo deployed to Cloud Run at ruvector-vwm-875130704813.us-central1.run.app - football.html: Patriots vs Seahawks with 4000+ gaussians/frame, ESPN-style scorebug, 5 camera modes, play simulation engine, particle effects, atmospheric fog, post-processing pipeline - canvas-viewer.html: Canvas2D fallback for generic VWM viewing - Dockerfile + nginx.conf: Cloud Run deployment config Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
4 lines
107 B
Docker
4 lines
107 B
Docker
FROM nginx:alpine
|
|
COPY . /usr/share/nginx/html/
|
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
|
EXPOSE 8080
|