21 lines
902 B
Text
21 lines
902 B
Text
# =============================================================================
|
|
# VEZA Frontend - Remote development on R720 (Cursor Remote-SSH + port forwarding)
|
|
# =============================================================================
|
|
# Copy to .env or .env.local when developing on the R720:
|
|
# cp env.remote-r720.example .env
|
|
#
|
|
# With Cursor Remote-SSH, the browser on your laptop accesses localhost:5173.
|
|
# Vite proxy forwards /api/v1 and /stream to the backend/stream on the R720.
|
|
# =============================================================================
|
|
|
|
# Domain: localhost (browser on laptop uses port forwarding)
|
|
VITE_DOMAIN=localhost
|
|
|
|
# Backend and Stream ports (match docker-compose / config.mk)
|
|
VITE_BACKEND_PORT=18080
|
|
VITE_STREAM_PORT=18082
|
|
|
|
# API: use /api/v1 so Vite proxy forwards (same-origin cookies)
|
|
VITE_API_URL=/api/v1
|
|
VITE_STREAM_URL=/stream
|
|
VITE_UPLOAD_URL=/upload
|