mirror of
https://github.com/ruvnet/RuVector.git
synced 2026-05-26 07:44:05 +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>
17 lines
355 B
Nginx Configuration File
17 lines
355 B
Nginx Configuration File
server {
|
|
listen 8080;
|
|
server_name _;
|
|
root /usr/share/nginx/html;
|
|
index football.html index.html;
|
|
|
|
location / {
|
|
try_files $uri $uri/ /football.html;
|
|
}
|
|
|
|
location ~* \.(html|js|css)$ {
|
|
add_header Cache-Control "public, max-age=3600";
|
|
}
|
|
|
|
gzip on;
|
|
gzip_types text/html text/css application/javascript;
|
|
}
|