From 11e65e46949bfa37897fc4fea87342838f65d26b Mon Sep 17 00:00:00 2001 From: salirezav Date: Thu, 18 Dec 2025 20:17:14 -0500 Subject: [PATCH] feat: Add local Supabase configuration for Vite development - Introduced a new backup environment file containing local Supabase and Vision API configurations. - Configured environment variables for Supabase URL, anonymous key, and various Vision API settings. - Enabled modules for video, vision system, and scheduling in the development environment. --- .../.env.backup.20251218_195621 | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 management-dashboard-web-app/.env.backup.20251218_195621 diff --git a/management-dashboard-web-app/.env.backup.20251218_195621 b/management-dashboard-web-app/.env.backup.20251218_195621 new file mode 100755 index 0000000..3efeb2e --- /dev/null +++ b/management-dashboard-web-app/.env.backup.20251218_195621 @@ -0,0 +1,17 @@ +# Local Supabase config for Vite dev server +VITE_SUPABASE_URL=http://exp-dash:54321 +VITE_SUPABASE_ANON_KEY=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZS1kZW1vIiwicm9sZSI6ImFub24iLCJleHAiOjE5ODM4MTI5OTZ9.CRXP1A7WOeoJeXxjNni43kdQwgnWNReilDMblYTn_I0 + + +# Vision API Configuration +VITE_VISION_API_URL=http://exp-dash:8000 +VITE_ENABLE_VIDEO_MODULE=true +VITE_VIDEO_REMOTE_URL=http://exp-dash:3001/assets/remoteEntry.js?v=1761849082 +VITE_MEDIA_API_URL=http://exp-dash:8090 + +# Vision System Module +VITE_ENABLE_VISION_SYSTEM_MODULE=true +VITE_VISION_SYSTEM_REMOTE_URL=http://exp-dash:3002/assets/remoteEntry.js + +# Enable scheduling module +VITE_ENABLE_SCHEDULING_MODULE=true